@openzeppelin/ui-components 1.0.0 → 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/ErrorMessage-D4BAP8iw.cjs +281 -0
- package/dist/ErrorMessage-D4BAP8iw.cjs.map +1 -0
- package/dist/ErrorMessage-DyO9ZWWz.js +170 -0
- package/dist/ErrorMessage-DyO9ZWWz.js.map +1 -0
- package/dist/code-editor-BKEEXGxt.d.cts +122 -0
- package/dist/code-editor-BKEEXGxt.d.cts.map +1 -0
- package/dist/code-editor-CxxSe1o8.d.ts +122 -0
- package/dist/code-editor-CxxSe1o8.d.ts.map +1 -0
- package/dist/code-editor.cjs +132 -0
- package/dist/code-editor.cjs.map +1 -0
- package/dist/code-editor.d.cts +122 -0
- package/dist/code-editor.d.ts +122 -0
- package/dist/code-editor.js +129 -0
- package/dist/code-editor.js.map +1 -0
- package/dist/{index-CrEkH28U.d.cts → index-DDdy06qO.d.ts} +8 -124
- package/dist/index-DDdy06qO.d.ts.map +1 -0
- package/dist/{index-CYn57Ffl.d.ts → index-DfQJGBqH.d.cts} +13 -129
- package/dist/index-DfQJGBqH.d.cts.map +1 -0
- package/dist/index.cjs +268 -584
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +5 -121
- package/dist/index.d.ts +11 -127
- package/dist/index.js +196 -482
- package/dist/index.js.map +1 -1
- package/package.json +8 -3
- package/dist/index-CYn57Ffl.d.ts.map +0 -1
- package/dist/index-CrEkH28U.d.cts.map +0 -1
package/dist/index.d.cts
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
|
+
import * as React$2 from "react";
|
|
2
|
+
import React$1, { ForwardedRef, JSX, ReactElement, ReactNode } from "react";
|
|
3
|
+
import { Control, FieldError, FieldPath, FieldValues, FormProvider, UseFormReturn } from "react-hook-form";
|
|
1
4
|
import * as class_variance_authority_types0 from "class-variance-authority/types";
|
|
2
5
|
import * as AccordionPrimitive from "@radix-ui/react-accordion";
|
|
3
6
|
import { VariantProps } from "class-variance-authority";
|
|
4
|
-
import * as React$2 from "react";
|
|
5
|
-
import React$1, { ForwardedRef, JSX, ReactElement, ReactNode } from "react";
|
|
6
7
|
import { DateRange, DayPicker } from "react-day-picker";
|
|
7
8
|
import * as CheckboxPrimitive from "@radix-ui/react-checkbox";
|
|
8
9
|
import * as DialogPrimitive from "@radix-ui/react-dialog";
|
|
9
10
|
import * as DropdownMenuPrimitive from "@radix-ui/react-dropdown-menu";
|
|
10
11
|
import * as _radix_ui_react_label0 from "@radix-ui/react-label";
|
|
11
|
-
import { Control, FieldError, FieldPath, FieldValues, FormProvider, Path, UseFormReturn } from "react-hook-form";
|
|
12
12
|
import { ContractAdapter, ContractSchema, EnumValue, FieldValidation, FormFieldType, FunctionParameter, MapEntry, NetworkConfig, NetworkType, RelayerDetails, RelayerDetailsRich } from "@openzeppelin/ui-types";
|
|
13
13
|
import * as PopoverPrimitive from "@radix-ui/react-popover";
|
|
14
14
|
import * as ProgressPrimitive from "@radix-ui/react-progress";
|
|
@@ -1277,122 +1277,6 @@ declare namespace BytesField {
|
|
|
1277
1277
|
}
|
|
1278
1278
|
//# sourceMappingURL=BytesField.d.ts.map
|
|
1279
1279
|
//#endregion
|
|
1280
|
-
//#region src/components/fields/CodeEditorField.d.ts
|
|
1281
|
-
/**
|
|
1282
|
-
* CodeEditorField component properties
|
|
1283
|
-
*/
|
|
1284
|
-
interface CodeEditorFieldProps<TFieldValues extends FieldValues = FieldValues> {
|
|
1285
|
-
/**
|
|
1286
|
-
* Unique identifier for the field
|
|
1287
|
-
*/
|
|
1288
|
-
id: string;
|
|
1289
|
-
/**
|
|
1290
|
-
* Optional CSS class name for the container
|
|
1291
|
-
*/
|
|
1292
|
-
className?: string;
|
|
1293
|
-
/**
|
|
1294
|
-
* Field name for form control
|
|
1295
|
-
*/
|
|
1296
|
-
name: Path<TFieldValues>;
|
|
1297
|
-
/**
|
|
1298
|
-
* React Hook Form control object
|
|
1299
|
-
*/
|
|
1300
|
-
control: Control<TFieldValues>;
|
|
1301
|
-
/**
|
|
1302
|
-
* Field label
|
|
1303
|
-
*/
|
|
1304
|
-
label?: string;
|
|
1305
|
-
/**
|
|
1306
|
-
* Helper text displayed below the field
|
|
1307
|
-
*/
|
|
1308
|
-
helperText?: string;
|
|
1309
|
-
/**
|
|
1310
|
-
* Placeholder text when empty
|
|
1311
|
-
*/
|
|
1312
|
-
placeholder?: string;
|
|
1313
|
-
/**
|
|
1314
|
-
* Programming language for syntax highlighting
|
|
1315
|
-
*/
|
|
1316
|
-
language?: string;
|
|
1317
|
-
/**
|
|
1318
|
-
* Editor theme
|
|
1319
|
-
*/
|
|
1320
|
-
theme?: string;
|
|
1321
|
-
/**
|
|
1322
|
-
* Editor height
|
|
1323
|
-
*/
|
|
1324
|
-
height?: string;
|
|
1325
|
-
/**
|
|
1326
|
-
* Editor maximum height (with scrollbar for overflow)
|
|
1327
|
-
*/
|
|
1328
|
-
maxHeight?: string;
|
|
1329
|
-
/**
|
|
1330
|
-
* Content size threshold for disabling syntax highlighting (default: 5000 chars)
|
|
1331
|
-
*/
|
|
1332
|
-
performanceThreshold?: number;
|
|
1333
|
-
/**
|
|
1334
|
-
* Whether the field is required
|
|
1335
|
-
*/
|
|
1336
|
-
required?: boolean;
|
|
1337
|
-
/**
|
|
1338
|
-
* Whether the field is disabled
|
|
1339
|
-
*/
|
|
1340
|
-
disabled?: boolean;
|
|
1341
|
-
/**
|
|
1342
|
-
* Whether the field is read-only
|
|
1343
|
-
*/
|
|
1344
|
-
readOnly?: boolean;
|
|
1345
|
-
/**
|
|
1346
|
-
* Custom validation function for code values
|
|
1347
|
-
*/
|
|
1348
|
-
validateCode?: (value: string) => boolean | string;
|
|
1349
|
-
}
|
|
1350
|
-
/**
|
|
1351
|
-
* CodeEditorField provides syntax-highlighted code editing with form integration.
|
|
1352
|
-
*
|
|
1353
|
-
* Features:
|
|
1354
|
-
* - Syntax highlighting via @uiw/react-textarea-code-editor
|
|
1355
|
-
* - React Hook Form integration with Controller
|
|
1356
|
-
* - Configurable language support (JSON, TypeScript, etc.)
|
|
1357
|
-
* - Performance optimizations with smart highlighting
|
|
1358
|
-
* - Constrained height with automatic scrolling
|
|
1359
|
-
* - Design system styling integration
|
|
1360
|
-
*
|
|
1361
|
-
* @example
|
|
1362
|
-
* ```tsx
|
|
1363
|
-
* <CodeEditorField
|
|
1364
|
-
* id="contractAbi"
|
|
1365
|
-
* name="contractSchema"
|
|
1366
|
-
* control={control}
|
|
1367
|
-
* label="Contract ABI"
|
|
1368
|
-
* language="json"
|
|
1369
|
-
* placeholder="Paste your ABI JSON here..."
|
|
1370
|
-
* />
|
|
1371
|
-
* ```
|
|
1372
|
-
*/
|
|
1373
|
-
declare function CodeEditorField<TFieldValues extends FieldValues = FieldValues>({
|
|
1374
|
-
id,
|
|
1375
|
-
name,
|
|
1376
|
-
control,
|
|
1377
|
-
label,
|
|
1378
|
-
helperText,
|
|
1379
|
-
placeholder,
|
|
1380
|
-
language,
|
|
1381
|
-
theme,
|
|
1382
|
-
height,
|
|
1383
|
-
maxHeight,
|
|
1384
|
-
performanceThreshold,
|
|
1385
|
-
required,
|
|
1386
|
-
disabled,
|
|
1387
|
-
readOnly,
|
|
1388
|
-
validateCode,
|
|
1389
|
-
className
|
|
1390
|
-
}: CodeEditorFieldProps<TFieldValues>): React$1.ReactElement;
|
|
1391
|
-
declare namespace CodeEditorField {
|
|
1392
|
-
var displayName: string;
|
|
1393
|
-
}
|
|
1394
|
-
//# sourceMappingURL=CodeEditorField.d.ts.map
|
|
1395
|
-
//#endregion
|
|
1396
1280
|
//#region src/components/fields/DateTimeField.d.ts
|
|
1397
1281
|
/**
|
|
1398
1282
|
* DateTimeField component properties
|
|
@@ -2524,5 +2408,5 @@ declare const Toaster: ({
|
|
|
2524
2408
|
...props
|
|
2525
2409
|
}: ToasterProps) => JSX.Element;
|
|
2526
2410
|
//#endregion
|
|
2527
|
-
export { AccessibilityProps, Accordion, AccordionContent, type AccordionContentProps, AccordionItem, type AccordionItemProps, type AccordionProps, AccordionTrigger, type AccordionTriggerProps, AddressDisplay, AddressField, Alert, AlertDescription, AlertTitle, AmountField, AmountFieldProps, ArrayField, ArrayFieldProps, ArrayObjectField, ArrayObjectFieldProps, Banner, BaseField, BaseFieldProps, BigIntField, BigIntFieldProps, BooleanField, BooleanFieldProps, Button, ButtonProps, BytesField, BytesFieldProps, Calendar, CalendarProps, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Checkbox,
|
|
2528
|
-
//# sourceMappingURL=index-
|
|
2411
|
+
export { AccessibilityProps, Accordion, AccordionContent, type AccordionContentProps, AccordionItem, type AccordionItemProps, type AccordionProps, AccordionTrigger, type AccordionTriggerProps, AddressDisplay, AddressField, Alert, AlertDescription, AlertTitle, AmountField, AmountFieldProps, ArrayField, ArrayFieldProps, ArrayObjectField, ArrayObjectFieldProps, Banner, BaseField, BaseFieldProps, BigIntField, BigIntFieldProps, BooleanField, BooleanFieldProps, Button, ButtonProps, BytesField, BytesFieldProps, Calendar, CalendarProps, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Checkbox, type DateRange, DateRangePicker, DateRangePickerProps, DateTimeField, DateTimeFieldProps, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, EmptyState, EmptyStateProps, EnumField, EnumFieldProps, EnumFieldValue, EnumMetadata, EnumVariant, ErrorMessage, ExternalLink, FileUploadField, FileUploadFieldProps, Footer, FooterProps, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, GroupedSelectOption, Header, HeaderProps, INTEGER_HTML_PATTERN, INTEGER_INPUT_PATTERN, INTEGER_PATTERN, Input, InputProps, Label, LoadingButton, LoadingButtonProps, MapEntryRow, MapField, MapFieldProps, MidnightIcon, NetworkError, NetworkErrorNotificationProvider, NetworkErrorType, NetworkIcon, NetworkIconProps, NetworkSelector, NetworkSelectorProps, NetworkStatusBadge, NumberField, NumberFieldProps, ObjectField, ObjectFieldProps, OptionGroup, PasswordField, PasswordFieldProps, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, Progress, RadioField, RadioFieldProps, RadioGroup, RadioGroupItem, RadioOption, RelayerDetailsCard, RelayerDetailsCardProps, Select, SelectContent, SelectField, SelectFieldProps, SelectGroup, SelectGroupedField, SelectGroupedFieldProps, SelectItem, SelectLabel, SelectOption, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, SidebarButton, SidebarButtonProps, SidebarLayout, SidebarLayoutProps, SidebarSection, SidebarSectionProps, Tabs, TabsContent, TabsList, TabsTrigger, TextAreaField, TextAreaFieldProps, TextField, TextFieldProps, Textarea, TextareaProps, Toaster, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, UrlField, ViewContractStateButton, buttonVariants, computeChildTouched, createFocusManager, createValidationResult, formatValidationError, getAccessibilityProps, getDescribedById, getErrorMessage, getValidationStateClasses, getWidthClasses, handleEscapeKey, handleKeyboardEvent, handleNumericKeys, handleToggleKeys, handleValidationError, hasFieldError, isDuplicateMapKey, useDuplicateKeyIndexes, useMapFieldSync, useNetworkErrorAwareAdapter, useNetworkErrorReporter, useNetworkErrors, validateField, validateMapEntries, validateMapStructure };
|
|
2412
|
+
//# sourceMappingURL=index-DfQJGBqH.d.cts.map
|
package/dist/index.d.ts
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import * as AccordionPrimitive from "@radix-ui/react-accordion";
|
|
2
|
-
import { VariantProps } from "class-variance-authority";
|
|
3
1
|
import * as React$2 from "react";
|
|
4
2
|
import React$1, { ForwardedRef, JSX, ReactElement, ReactNode } from "react";
|
|
3
|
+
import { Control, FieldError, FieldPath, FieldValues, FormProvider, UseFormReturn } from "react-hook-form";
|
|
4
|
+
import * as AccordionPrimitive from "@radix-ui/react-accordion";
|
|
5
|
+
import { VariantProps } from "class-variance-authority";
|
|
5
6
|
import { DateRange, DayPicker } from "react-day-picker";
|
|
6
7
|
import * as CheckboxPrimitive from "@radix-ui/react-checkbox";
|
|
7
8
|
import * as PopoverPrimitive from "@radix-ui/react-popover";
|
|
8
9
|
import * as DialogPrimitive from "@radix-ui/react-dialog";
|
|
9
10
|
import * as DropdownMenuPrimitive from "@radix-ui/react-dropdown-menu";
|
|
10
|
-
import { Control, FieldError, FieldPath, FieldValues, FormProvider, Path, UseFormReturn } from "react-hook-form";
|
|
11
11
|
import * as _radix_ui_react_label0 from "@radix-ui/react-label";
|
|
12
12
|
import * as ProgressPrimitive from "@radix-ui/react-progress";
|
|
13
13
|
import * as RadioGroupPrimitive from "@radix-ui/react-radio-group";
|
|
@@ -16,18 +16,18 @@ import * as TabsPrimitive from "@radix-ui/react-tabs";
|
|
|
16
16
|
import * as TooltipPrimitive from "@radix-ui/react-tooltip";
|
|
17
17
|
import { ContractAdapter, ContractSchema, EnumValue, FieldValidation, FormFieldType, FunctionParameter, MapEntry, NetworkConfig, NetworkType, RelayerDetails, RelayerDetailsRich } from "@openzeppelin/ui-types";
|
|
18
18
|
import { ToasterProps } from "sonner";
|
|
19
|
-
import * as
|
|
19
|
+
import * as class_variance_authority_types0 from "class-variance-authority/types";
|
|
20
20
|
|
|
21
21
|
//#region src/components/ui/accordion.d.ts
|
|
22
22
|
declare const accordionItemVariants: (props?: ({
|
|
23
23
|
variant?: "default" | "card" | null | undefined;
|
|
24
|
-
} &
|
|
24
|
+
} & class_variance_authority_types0.ClassProp) | undefined) => string;
|
|
25
25
|
declare const accordionTriggerVariants: (props?: ({
|
|
26
26
|
variant?: "default" | "card" | null | undefined;
|
|
27
|
-
} &
|
|
27
|
+
} & class_variance_authority_types0.ClassProp) | undefined) => string;
|
|
28
28
|
declare const accordionContentVariants: (props?: ({
|
|
29
29
|
variant?: "default" | "card" | null | undefined;
|
|
30
|
-
} &
|
|
30
|
+
} & class_variance_authority_types0.ClassProp) | undefined) => string;
|
|
31
31
|
type AccordionVariant = 'default' | 'card';
|
|
32
32
|
type AccordionProps = (AccordionPrimitive.AccordionSingleProps | AccordionPrimitive.AccordionMultipleProps) & {
|
|
33
33
|
variant?: AccordionVariant;
|
|
@@ -96,7 +96,7 @@ declare function AddressDisplay({
|
|
|
96
96
|
//#region src/components/ui/alert.d.ts
|
|
97
97
|
declare const Alert: React$2.ForwardRefExoticComponent<React$2.HTMLAttributes<HTMLDivElement> & VariantProps<(props?: ({
|
|
98
98
|
variant?: "default" | "destructive" | "success" | null | undefined;
|
|
99
|
-
} &
|
|
99
|
+
} & class_variance_authority_types0.ClassProp) | undefined) => string> & React$2.RefAttributes<HTMLDivElement>>;
|
|
100
100
|
declare const AlertTitle: React$2.ForwardRefExoticComponent<React$2.HTMLAttributes<HTMLHeadingElement> & React$2.RefAttributes<HTMLParagraphElement>>;
|
|
101
101
|
declare const AlertDescription: React$2.ForwardRefExoticComponent<React$2.HTMLAttributes<HTMLParagraphElement> & React$2.RefAttributes<HTMLParagraphElement>>;
|
|
102
102
|
//#endregion
|
|
@@ -143,7 +143,7 @@ declare const Banner: React$2.ForwardRefExoticComponent<BannerProps & React$2.Re
|
|
|
143
143
|
declare const buttonVariants: (props?: ({
|
|
144
144
|
variant?: "default" | "destructive" | "outline" | "secondary" | "ghost" | "link" | null | undefined;
|
|
145
145
|
size?: "default" | "sm" | "lg" | "icon" | null | undefined;
|
|
146
|
-
} &
|
|
146
|
+
} & class_variance_authority_types0.ClassProp) | undefined) => string;
|
|
147
147
|
//# sourceMappingURL=button-variants.d.ts.map
|
|
148
148
|
//#endregion
|
|
149
149
|
//#region src/components/ui/button.d.ts
|
|
@@ -1277,122 +1277,6 @@ declare namespace BytesField {
|
|
|
1277
1277
|
}
|
|
1278
1278
|
//# sourceMappingURL=BytesField.d.ts.map
|
|
1279
1279
|
//#endregion
|
|
1280
|
-
//#region src/components/fields/CodeEditorField.d.ts
|
|
1281
|
-
/**
|
|
1282
|
-
* CodeEditorField component properties
|
|
1283
|
-
*/
|
|
1284
|
-
interface CodeEditorFieldProps<TFieldValues extends FieldValues = FieldValues> {
|
|
1285
|
-
/**
|
|
1286
|
-
* Unique identifier for the field
|
|
1287
|
-
*/
|
|
1288
|
-
id: string;
|
|
1289
|
-
/**
|
|
1290
|
-
* Optional CSS class name for the container
|
|
1291
|
-
*/
|
|
1292
|
-
className?: string;
|
|
1293
|
-
/**
|
|
1294
|
-
* Field name for form control
|
|
1295
|
-
*/
|
|
1296
|
-
name: Path<TFieldValues>;
|
|
1297
|
-
/**
|
|
1298
|
-
* React Hook Form control object
|
|
1299
|
-
*/
|
|
1300
|
-
control: Control<TFieldValues>;
|
|
1301
|
-
/**
|
|
1302
|
-
* Field label
|
|
1303
|
-
*/
|
|
1304
|
-
label?: string;
|
|
1305
|
-
/**
|
|
1306
|
-
* Helper text displayed below the field
|
|
1307
|
-
*/
|
|
1308
|
-
helperText?: string;
|
|
1309
|
-
/**
|
|
1310
|
-
* Placeholder text when empty
|
|
1311
|
-
*/
|
|
1312
|
-
placeholder?: string;
|
|
1313
|
-
/**
|
|
1314
|
-
* Programming language for syntax highlighting
|
|
1315
|
-
*/
|
|
1316
|
-
language?: string;
|
|
1317
|
-
/**
|
|
1318
|
-
* Editor theme
|
|
1319
|
-
*/
|
|
1320
|
-
theme?: string;
|
|
1321
|
-
/**
|
|
1322
|
-
* Editor height
|
|
1323
|
-
*/
|
|
1324
|
-
height?: string;
|
|
1325
|
-
/**
|
|
1326
|
-
* Editor maximum height (with scrollbar for overflow)
|
|
1327
|
-
*/
|
|
1328
|
-
maxHeight?: string;
|
|
1329
|
-
/**
|
|
1330
|
-
* Content size threshold for disabling syntax highlighting (default: 5000 chars)
|
|
1331
|
-
*/
|
|
1332
|
-
performanceThreshold?: number;
|
|
1333
|
-
/**
|
|
1334
|
-
* Whether the field is required
|
|
1335
|
-
*/
|
|
1336
|
-
required?: boolean;
|
|
1337
|
-
/**
|
|
1338
|
-
* Whether the field is disabled
|
|
1339
|
-
*/
|
|
1340
|
-
disabled?: boolean;
|
|
1341
|
-
/**
|
|
1342
|
-
* Whether the field is read-only
|
|
1343
|
-
*/
|
|
1344
|
-
readOnly?: boolean;
|
|
1345
|
-
/**
|
|
1346
|
-
* Custom validation function for code values
|
|
1347
|
-
*/
|
|
1348
|
-
validateCode?: (value: string) => boolean | string;
|
|
1349
|
-
}
|
|
1350
|
-
/**
|
|
1351
|
-
* CodeEditorField provides syntax-highlighted code editing with form integration.
|
|
1352
|
-
*
|
|
1353
|
-
* Features:
|
|
1354
|
-
* - Syntax highlighting via @uiw/react-textarea-code-editor
|
|
1355
|
-
* - React Hook Form integration with Controller
|
|
1356
|
-
* - Configurable language support (JSON, TypeScript, etc.)
|
|
1357
|
-
* - Performance optimizations with smart highlighting
|
|
1358
|
-
* - Constrained height with automatic scrolling
|
|
1359
|
-
* - Design system styling integration
|
|
1360
|
-
*
|
|
1361
|
-
* @example
|
|
1362
|
-
* ```tsx
|
|
1363
|
-
* <CodeEditorField
|
|
1364
|
-
* id="contractAbi"
|
|
1365
|
-
* name="contractSchema"
|
|
1366
|
-
* control={control}
|
|
1367
|
-
* label="Contract ABI"
|
|
1368
|
-
* language="json"
|
|
1369
|
-
* placeholder="Paste your ABI JSON here..."
|
|
1370
|
-
* />
|
|
1371
|
-
* ```
|
|
1372
|
-
*/
|
|
1373
|
-
declare function CodeEditorField<TFieldValues extends FieldValues = FieldValues>({
|
|
1374
|
-
id,
|
|
1375
|
-
name,
|
|
1376
|
-
control,
|
|
1377
|
-
label,
|
|
1378
|
-
helperText,
|
|
1379
|
-
placeholder,
|
|
1380
|
-
language,
|
|
1381
|
-
theme,
|
|
1382
|
-
height,
|
|
1383
|
-
maxHeight,
|
|
1384
|
-
performanceThreshold,
|
|
1385
|
-
required,
|
|
1386
|
-
disabled,
|
|
1387
|
-
readOnly,
|
|
1388
|
-
validateCode,
|
|
1389
|
-
className
|
|
1390
|
-
}: CodeEditorFieldProps<TFieldValues>): React$1.ReactElement;
|
|
1391
|
-
declare namespace CodeEditorField {
|
|
1392
|
-
var displayName: string;
|
|
1393
|
-
}
|
|
1394
|
-
//# sourceMappingURL=CodeEditorField.d.ts.map
|
|
1395
|
-
//#endregion
|
|
1396
1280
|
//#region src/components/fields/DateTimeField.d.ts
|
|
1397
1281
|
/**
|
|
1398
1282
|
* DateTimeField component properties
|
|
@@ -2524,5 +2408,5 @@ declare const Toaster: ({
|
|
|
2524
2408
|
...props
|
|
2525
2409
|
}: ToasterProps) => JSX.Element;
|
|
2526
2410
|
//#endregion
|
|
2527
|
-
export { AccessibilityProps, Accordion, AccordionContent, type AccordionContentProps, AccordionItem, type AccordionItemProps, type AccordionProps, AccordionTrigger, type AccordionTriggerProps, AddressDisplay, AddressField, Alert, AlertDescription, AlertTitle, AmountField, AmountFieldProps, ArrayField, ArrayFieldProps, ArrayObjectField, ArrayObjectFieldProps, Banner, BaseField, BaseFieldProps, BigIntField, BigIntFieldProps, BooleanField, BooleanFieldProps, Button, ButtonProps, BytesField, BytesFieldProps, Calendar, CalendarProps, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Checkbox,
|
|
2528
|
-
//# sourceMappingURL=index-
|
|
2411
|
+
export { AccessibilityProps, Accordion, AccordionContent, type AccordionContentProps, AccordionItem, type AccordionItemProps, type AccordionProps, AccordionTrigger, type AccordionTriggerProps, AddressDisplay, AddressField, Alert, AlertDescription, AlertTitle, AmountField, AmountFieldProps, ArrayField, ArrayFieldProps, ArrayObjectField, ArrayObjectFieldProps, Banner, BaseField, BaseFieldProps, BigIntField, BigIntFieldProps, BooleanField, BooleanFieldProps, Button, ButtonProps, BytesField, BytesFieldProps, Calendar, CalendarProps, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Checkbox, type DateRange, DateRangePicker, DateRangePickerProps, DateTimeField, DateTimeFieldProps, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, EmptyState, EmptyStateProps, EnumField, EnumFieldProps, EnumFieldValue, EnumMetadata, EnumVariant, ErrorMessage, ExternalLink, FileUploadField, FileUploadFieldProps, Footer, FooterProps, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, GroupedSelectOption, Header, HeaderProps, INTEGER_HTML_PATTERN, INTEGER_INPUT_PATTERN, INTEGER_PATTERN, Input, InputProps, Label, LoadingButton, LoadingButtonProps, MapEntryRow, MapField, MapFieldProps, MidnightIcon, NetworkError, NetworkErrorNotificationProvider, NetworkErrorType, NetworkIcon, NetworkIconProps, NetworkSelector, NetworkSelectorProps, NetworkStatusBadge, NumberField, NumberFieldProps, ObjectField, ObjectFieldProps, OptionGroup, PasswordField, PasswordFieldProps, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, Progress, RadioField, RadioFieldProps, RadioGroup, RadioGroupItem, RadioOption, RelayerDetailsCard, RelayerDetailsCardProps, Select, SelectContent, SelectField, SelectFieldProps, SelectGroup, SelectGroupedField, SelectGroupedFieldProps, SelectItem, SelectLabel, SelectOption, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, SidebarButton, SidebarButtonProps, SidebarLayout, SidebarLayoutProps, SidebarSection, SidebarSectionProps, Tabs, TabsContent, TabsList, TabsTrigger, TextAreaField, TextAreaFieldProps, TextField, TextFieldProps, Textarea, TextareaProps, Toaster, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, UrlField, ViewContractStateButton, buttonVariants, computeChildTouched, createFocusManager, createValidationResult, formatValidationError, getAccessibilityProps, getDescribedById, getErrorMessage, getValidationStateClasses, getWidthClasses, handleEscapeKey, handleKeyboardEvent, handleNumericKeys, handleToggleKeys, handleValidationError, hasFieldError, isDuplicateMapKey, useDuplicateKeyIndexes, useMapFieldSync, useNetworkErrorAwareAdapter, useNetworkErrorReporter, useNetworkErrors, validateField, validateMapEntries, validateMapStructure };
|
|
2412
|
+
//# sourceMappingURL=index-DDdy06qO.d.ts.map
|