@mmb-digital/design-system-web 0.1.271 → 0.1.272

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/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  import * as React from 'react';
2
- import React__default, { ReactNode, AriaAttributes, ElementType, RefObject, MouseEvent, AriaRole, TouchEvent, ReactElement, FocusEventHandler, MouseEventHandler, KeyboardEventHandler, HTMLProps, HTMLInputAutoCompleteAttribute, FocusEvent, ChangeEvent, ComponentType, ComponentProps, TextareaHTMLAttributes, RefAttributes, HTMLAttributes, HTMLInputTypeAttribute, FC, KeyboardEvent, Key } from 'react';
2
+ import React__default, { ReactNode, AriaAttributes, ElementType, RefObject, MouseEvent, AriaRole, TouchEvent, ReactElement, FocusEventHandler, MouseEventHandler, KeyboardEventHandler, HTMLProps, HTMLInputAutoCompleteAttribute, FocusEvent, ChangeEvent, ComponentType, ComponentProps, TextareaHTMLAttributes, RefAttributes, HTMLAttributes, HTMLInputTypeAttribute, FC, KeyboardEvent, BaseSyntheticEvent, Key } from 'react';
3
3
  import { MessageDescriptor } from 'react-intl';
4
4
  import { FormatXMLElementFn, PrimitiveType } from 'intl-messageformat';
5
5
  import * as _emotion_react from '@emotion/react';
@@ -11,7 +11,7 @@ import { Property } from 'csstype';
11
11
  import { Locale } from 'date-fns';
12
12
  import { DatePickerProps as DatePickerProps$1 } from 'react-datepicker';
13
13
  import * as react_hook_form from 'react-hook-form';
14
- import { RegisterOptions, FieldValues, FieldPath, UseFormProps as UseFormProps$1, UseFormReturn as UseFormReturn$1 } from 'react-hook-form';
14
+ import { RegisterOptions, FieldValues, FieldPath, UseFormProps as UseFormProps$1, SubmitErrorHandler, UseFormReturn as UseFormReturn$1 } from 'react-hook-form';
15
15
  import { FactoryOpts } from 'imask';
16
16
  import { z } from 'zod';
17
17
  import emotionStyled from '@emotion/styled';
@@ -2344,16 +2344,6 @@ interface ComboBoxFieldProps<TItem extends ComboBoxItem> extends Omit<ComboBoxPr
2344
2344
  }
2345
2345
  declare const ComboBoxField: <TItem extends ComboBoxItem>(props: ComboBoxFieldProps<TItem>) => React__default.JSX.Element;
2346
2346
 
2347
- interface FormErrorOutcomeProps extends DesignSystemBaseProps {
2348
- }
2349
- declare const FormErrorOutcome: (props: FormErrorOutcomeProps) => React__default.JSX.Element | null;
2350
-
2351
- interface FormErrorSummaryProps extends DesignSystemBaseProps {
2352
- order?: string[];
2353
- title: ReactElement | string;
2354
- }
2355
- declare const FormErrorSummary: (props: FormErrorSummaryProps) => React__default.JSX.Element;
2356
-
2357
2347
  interface ThrownFieldLevelError {
2358
2348
  code: string;
2359
2349
  fieldName: string;
@@ -2370,21 +2360,62 @@ interface ThrownFormErrors {
2370
2360
  fieldLevelErrors: ThrownFieldLevelError[];
2371
2361
  formLevelErrors: ThrownFormLevelError[];
2372
2362
  }
2363
+ interface ReCaptchaV3Config {
2364
+ isEnterprise: boolean;
2365
+ siteKey: string;
2366
+ }
2367
+ declare enum ReCaptchaType {
2368
+ v3 = "v3"
2369
+ }
2373
2370
  interface FormConfig {
2371
+ reCaptchaV3Config?: ReCaptchaV3Config;
2374
2372
  resolveThrownFormErrors?: (error: unknown) => ThrownFormErrors;
2375
2373
  thrownFieldLevelErrorFormatter?: Formatter<ThrownFieldLevelError, ReactNode, string>;
2376
2374
  thrownFormLevelErrorFormatter?: Formatter<ThrownFormLevelError, ReactNode, string>;
2377
2375
  }
2376
+ type SubmitHandler<TFieldValues extends FieldValues, TUseReCaptcha extends boolean> = (data: TFieldValues, extraParams: TUseReCaptcha extends true ? {
2377
+ captchaToken: string;
2378
+ } : undefined, event?: BaseSyntheticEvent) => Promise<unknown> | unknown;
2379
+
2380
+ declare const FormConfigContext: React__default.Context<FormConfig>;
2381
+ interface FormConfigProviderProps {
2382
+ children: ReactNode;
2383
+ config: FormConfig;
2384
+ }
2385
+ declare const FormConfigProvider: (props: FormConfigProviderProps) => React__default.JSX.Element;
2378
2386
 
2387
+ interface FormErrorOutcomeProps extends DesignSystemBaseProps {
2388
+ }
2389
+ declare const FormErrorOutcome: (props: FormErrorOutcomeProps) => React__default.JSX.Element | null;
2390
+
2391
+ interface FormErrorSummaryProps extends DesignSystemBaseProps {
2392
+ order?: string[];
2393
+ title: ReactElement | string;
2394
+ }
2395
+ declare const FormErrorSummary: (props: FormErrorSummaryProps) => React__default.JSX.Element;
2396
+
2397
+ interface UseFormReCaptchaProp {
2398
+ action: string;
2399
+ recaptchaType?: ReCaptchaType;
2400
+ }
2379
2401
  interface UseFormProps<TFieldValues extends FieldValues> extends UseFormProps$1<TFieldValues> {
2380
2402
  schema?: z.Schema;
2381
2403
  /** Used e.g. for updating field names when there's a discrepancy between React Hook Form and API fields. */
2382
2404
  updateThrownFormErrors?: (thrownFormErrors: ThrownFormErrors) => ThrownFormErrors;
2383
2405
  }
2384
- interface UseFormReturn<TFieldValues extends FieldValues> extends UseFormReturn$1<TFieldValues> {
2406
+ type UseFormHandleSubmit<TFieldValues extends FieldValues, TUseReCaptcha extends boolean> = (onValid: SubmitHandler<TFieldValues, TUseReCaptcha>, onInvalid?: SubmitErrorHandler<TFieldValues>) => (event?: BaseSyntheticEvent) => Promise<void>;
2407
+ type UseFormReturn<TFieldValues extends FieldValues, TUseReCaptcha extends boolean = false> = Omit<UseFormReturn$1<TFieldValues>, 'handleSubmit'> & {
2408
+ handleSubmit: UseFormHandleSubmit<TFieldValues, TUseReCaptcha>;
2385
2409
  thrownFormErrors: ThrownFormErrors;
2386
- }
2387
- declare const useForm: <TFieldValues extends FieldValues = FieldValues>(props?: UseFormProps<TFieldValues>) => UseFormReturn<TFieldValues>;
2410
+ };
2411
+ /**
2412
+ * If enabled using the `reCaptcha` prop, automatically performs Google reCAPTCHA verification when submitting a form.
2413
+ * The reCAPTCHA token is passed to the submit handler.
2414
+ */
2415
+ declare function useForm<TFieldValues extends FieldValues>(props?: UseFormProps<TFieldValues>): UseFormReturn<TFieldValues, false>;
2416
+ declare function useForm<TFieldValues extends FieldValues>(props: UseFormProps<TFieldValues> & {
2417
+ reCaptcha: UseFormReCaptchaProp;
2418
+ }): UseFormReturn<TFieldValues, true>;
2388
2419
 
2389
2420
  interface FormProviderProps<TFieldValues extends FieldValues = FieldValues> {
2390
2421
  children: ReactNode;
@@ -2392,13 +2423,6 @@ interface FormProviderProps<TFieldValues extends FieldValues = FieldValues> {
2392
2423
  }
2393
2424
  declare const FormProvider: <TFieldValues extends FieldValues = FieldValues>(props: FormProviderProps<TFieldValues>) => React__default.JSX.Element;
2394
2425
 
2395
- declare const FormConfigContext: React__default.Context<FormConfig>;
2396
- interface FormConfigProviderProps {
2397
- children: ReactNode;
2398
- config: FormConfig;
2399
- }
2400
- declare const FormConfigProvider: (props: FormConfigProviderProps) => React__default.JSX.Element;
2401
-
2402
2426
  interface FormSuccessOutcomeProps extends DesignSystemBaseProps {
2403
2427
  children: ReactNode;
2404
2428
  onHide: () => void;
@@ -2526,4 +2550,4 @@ declare const useMessageFormatter: <TInput extends unknown>(getMessage: (value:
2526
2550
 
2527
2551
  declare const styled: typeof emotionStyled;
2528
2552
 
2529
- export { Accordion, AccordionContent, type AccordionContentType, AccordionItem, type AccordionItemProps, type AccordionItemType, AccordionKeyValue, type AccordionKeyValueProps, type AccordionProps, AccordionVariant, BorderRadius, Button, type ButtonProps, ButtonSize, ButtonStyle, ButtonType, ButtonsLayout, ButtonsLayoutAlign, ButtonsLayoutDirection, type ButtonsLayoutProps, CalculatorResult, type CalculatorResultBodyItem, type CalculatorResultHeader, CalculatorResultInfoPosition, type CalculatorResultMain, type CalculatorResultModalDescriptor, type CalculatorResultProps, Checkbox, CheckboxControl, type CheckboxControlProps, CheckboxField, type CheckboxFieldProps, CheckboxPosition, type CheckboxProps, type ChooseColor, CircularProgressBar, type CircularProgressBarProps, type ColorObject, ColorScheme, ColorSchemeProvider, type ColorSchemeProviderProps, ComboBox, ComboBoxControl, type ComboBoxControlProps, ComboBoxField, type ComboBoxFieldProps, type ComboBoxItem, type ComboBoxItemOrder, ComboBoxItemOrderSource, type ComboBoxProps, type CreateTooltipInfoDescriptor, type CreateTooltipInfoDescriptorParam, DatePicker, DatePickerControl, type DatePickerControlProps, DatePickerField, type DatePickerFieldProps, type DatePickerProps, type DesignSystemBaseProps, DesignSystemProvider, type DesignSystemProviderProps, EmailInput, EmailInputField, type EmailInputFieldProps, type EmailInputProps, ErrorBox, type ErrorBoxItem, type ErrorBoxProps, type FieldAddon, FieldAddonPosition, type FieldConfig, FieldConfigProvider, type FieldConfigProviderProps, type FieldControlProps, FieldLabelStoreProvider, type FieldLabelStoreProviderProps, FieldOptionality, FieldWrapper, FieldWrapperLayout, type FieldWrapperProps, FileInput, FileInputControl, type FileInputControlProps, type FileInputDropzoneDragFilesHereComponent, type FileInputDropzoneDragOrSelectFilesComponent, type FileInputDropzoneSelectFilesComponent, FileInputErrorCode, FileInputField, type FileInputFieldProps, type FileInputLimitDescriptionComponent, type FileInputProps, type FileInputRemoveButtonTextComponent, type FileInputSettings, type FileInputUploadErrorReasonComponent, type FileInputUploadFailedComponent, FlexWrap, FontWeight, type FormConfig, FormConfigContext, FormConfigProvider, type FormConfigProviderProps, FormErrorOutcome, type FormErrorOutcomeProps, FormErrorSummary, type FormErrorSummaryProps, FormProvider, type FormProviderProps, FormSuccessOutcome, type FormSuccessOutcomeProps, FormatAmountCurrencyDisplay, FormatAmountGrouping, FormattedAmount$1 as FormattedAmount, type FormattedAmountProps$1 as FormattedAmountProps, FormattedHtmlMessage, type FormattedHtmlMessageProps, FormattedMessage, type FormattedMessageProps, _default as FormattedPercentage, type GetColor, IconProduct, type IconProductProps, IconProductSize, IconProductType, IconProductVariant, IconSystem, type IconSystemProps, IconSystemSize, IconSystemType, Infobox, type InfoboxProps, InfoboxSize, type InfoboxTextContent, InfoboxVariant, InputBase, type InputBaseProps, InputLabel, type InputLabelPassthroughProps, type InputLabelProps, InputLabelSize, InputSize, InputTextAlign, LabelTooltipPosition, Loader, LoaderOverlayBox, type LoaderOverlayBoxProps, type LoaderProps, LoaderSize, MaskedInput, MaskedInputBase, type MaskedInputBaseProps, MaskedInputField, type MaskedInputFieldProps, type MaskedInputProps, MediaType, MediaTypeProvider, type MediaTypeProviderProps, type MessageDescriptorWithPrimitiveValues, type MessageDescriptorWithValues, type MessageValues, Modal, type ModalOnClose, type ModalProps, ModalVerticalPosition, ModalWidthType, FormattedAmount as NextFormattedAmount, type FormattedAmountProps as NextFormattedAmountProps, NumberInput, NumberInputField, type NumberInputFieldProps, type NumberInputProps, Overflow, Paper, type PaperProps, PaperShadow, PhoneInput, PhoneInputField, type PhoneInputFieldProps, type PhoneInputProps, type PrimitiveMessageValues, ProgressPaper, type ProgressPaperProps, Radio, RadioButton, RadioButtonGroup, RadioButtonGroupControl, type RadioButtonGroupControlProps, RadioButtonGroupField, type RadioButtonGroupFieldProps, type RadioButtonGroupItem, RadioButtonGroupLayout, type RadioButtonGroupProps, type RadioButtonLabel, type RadioButtonProps, RadioControl, type RadioControlProps, RadioField, type RadioFieldProps, RadioGroup, RadioGroupControl, type RadioGroupControlProps, RadioGroupDirection, RadioGroupField, type RadioGroupFieldProps, type RadioGroupItem, type RadioGroupProps, RadioPosition, type RadioProps, ReasonForClosing, SearchInput, type SearchInputProps, Select, SelectControl, type SelectControlProps, SelectField, type SelectFieldProps, type SelectItem, type SelectItemOrder, SelectItemOrderSource, type SelectProps, SelectVariant, Slider, type SliderAriaValueTextFormatter, type SliderAriaValueTextFormatterDataContext, type SliderBreakpoint, SliderInput, SliderInputField, type SliderInputFieldProps, type SliderInputLimitExceededLiveTextFormatter, type SliderInputLimitExceededLiveTextFormatterDataContext, type SliderInputProps, SliderInputRoundingType, type SliderMinMaxLabels, type SliderProps, SliderStepType, type SliderSteps, Spacing, SpanButton, type SpanButtonProps, Stack, StackDirection, type StackProps, type TabItemType, Table, TableBody, type TableBodyProps, TableData, type TableDataProps, TableHead, TableHeadData, type TableHeadDataProps, type TableHeadProps, type TableProps, TableRow, type TableRowProps, TableTextAlign, TableVariant, Tabs, TabsActiveTabDefaultPosition, TabsItem, type TabsItemProps, type TabsProps, TabsSize, type TabsType, TabsVariant, Tag, TagIconPosition, type TagProps, TagSize, TagTextTransform, TagType, TextArea, TextAreaField, type TextAreaFieldProps, type TextAreaProps, TextDecoration, TextInput, TextInputField, type TextInputFieldProps, type TextInputProps, type Theme, type ThrownFieldLevelError, type ThrownFormErrors, type ThrownFormLevelError, ThrownFormLevelErrorType, Toggle, type ToggleProps, TooltipCloseReason, type TooltipDescriptor, TooltipGeneral, type TooltipGeneralProps, TooltipInfo, TooltipInfoConditional, type TooltipInfoConditionalProps, type TooltipInfoDescriptor, TooltipInfoDisplayMethod, TooltipInfoDisplayableCheck, type TooltipInfoDisplayableCheckProps, type TooltipInfoProps, TooltipPlacement, type TooltipRenderParent, TrailingTextInput, type TrailingTextInputProps, Typography, type TypographyProps, TypographyTextAlign, TypographyVariant, type UseColorSchemeOptions, type UseColorSchemeParam, type UseDesignSystemOptions, type UseDesignSystemParam, type UseFormProps, type UseFormReturn, type UseFormSuccessOutcomeManagerReturn, type UseFormatAmountParam, type UseMediaTypeOptions, type UseMediaTypeParam, VisuallyHidden, type VisuallyHiddenProps, datePickerValueFormat, getColor, getTextDecorationStyle, identityFormatter, isRenderable, jsonFormatter, resolveBorderRadiusValue, resolveFlexWrapValue, resolveFontWeightValue, resolveOverflowValue, resolveSpacingValue, resolveTextDecorationValue, styled, theme, useChooseColor, useColorScheme, useCreateTooltipInfoDescriptor, useDesignSystem, useFieldConfig, useFieldLabels, useForm, useFormContext, useFormSuccessOutcomeManager, useFormatAmount$1 as useFormatAmount, useFormattedPercentage, useGetFormattedHtmlMessageIfDisplayable, useIsMessageDisplayable, useMediaType, useMessageFormatter, useFormatAmount as useNextFormatAmount, useRegisterFieldLabel, withFieldWrapper, withMaskedInputField };
2553
+ export { Accordion, AccordionContent, type AccordionContentType, AccordionItem, type AccordionItemProps, type AccordionItemType, AccordionKeyValue, type AccordionKeyValueProps, type AccordionProps, AccordionVariant, BorderRadius, Button, type ButtonProps, ButtonSize, ButtonStyle, ButtonType, ButtonsLayout, ButtonsLayoutAlign, ButtonsLayoutDirection, type ButtonsLayoutProps, CalculatorResult, type CalculatorResultBodyItem, type CalculatorResultHeader, CalculatorResultInfoPosition, type CalculatorResultMain, type CalculatorResultModalDescriptor, type CalculatorResultProps, Checkbox, CheckboxControl, type CheckboxControlProps, CheckboxField, type CheckboxFieldProps, CheckboxPosition, type CheckboxProps, type ChooseColor, CircularProgressBar, type CircularProgressBarProps, type ColorObject, ColorScheme, ColorSchemeProvider, type ColorSchemeProviderProps, ComboBox, ComboBoxControl, type ComboBoxControlProps, ComboBoxField, type ComboBoxFieldProps, type ComboBoxItem, type ComboBoxItemOrder, ComboBoxItemOrderSource, type ComboBoxProps, type CreateTooltipInfoDescriptor, type CreateTooltipInfoDescriptorParam, DatePicker, DatePickerControl, type DatePickerControlProps, DatePickerField, type DatePickerFieldProps, type DatePickerProps, type DesignSystemBaseProps, DesignSystemProvider, type DesignSystemProviderProps, EmailInput, EmailInputField, type EmailInputFieldProps, type EmailInputProps, ErrorBox, type ErrorBoxItem, type ErrorBoxProps, type FieldAddon, FieldAddonPosition, type FieldConfig, FieldConfigProvider, type FieldConfigProviderProps, type FieldControlProps, FieldLabelStoreProvider, type FieldLabelStoreProviderProps, FieldOptionality, FieldWrapper, FieldWrapperLayout, type FieldWrapperProps, FileInput, FileInputControl, type FileInputControlProps, type FileInputDropzoneDragFilesHereComponent, type FileInputDropzoneDragOrSelectFilesComponent, type FileInputDropzoneSelectFilesComponent, FileInputErrorCode, FileInputField, type FileInputFieldProps, type FileInputLimitDescriptionComponent, type FileInputProps, type FileInputRemoveButtonTextComponent, type FileInputSettings, type FileInputUploadErrorReasonComponent, type FileInputUploadFailedComponent, FlexWrap, FontWeight, type FormConfig, FormConfigContext, FormConfigProvider, type FormConfigProviderProps, FormErrorOutcome, type FormErrorOutcomeProps, FormErrorSummary, type FormErrorSummaryProps, FormProvider, type FormProviderProps, FormSuccessOutcome, type FormSuccessOutcomeProps, FormatAmountCurrencyDisplay, FormatAmountGrouping, FormattedAmount$1 as FormattedAmount, type FormattedAmountProps$1 as FormattedAmountProps, FormattedHtmlMessage, type FormattedHtmlMessageProps, FormattedMessage, type FormattedMessageProps, _default as FormattedPercentage, type GetColor, IconProduct, type IconProductProps, IconProductSize, IconProductType, IconProductVariant, IconSystem, type IconSystemProps, IconSystemSize, IconSystemType, Infobox, type InfoboxProps, InfoboxSize, type InfoboxTextContent, InfoboxVariant, InputBase, type InputBaseProps, InputLabel, type InputLabelPassthroughProps, type InputLabelProps, InputLabelSize, InputSize, InputTextAlign, LabelTooltipPosition, Loader, LoaderOverlayBox, type LoaderOverlayBoxProps, type LoaderProps, LoaderSize, MaskedInput, MaskedInputBase, type MaskedInputBaseProps, MaskedInputField, type MaskedInputFieldProps, type MaskedInputProps, MediaType, MediaTypeProvider, type MediaTypeProviderProps, type MessageDescriptorWithPrimitiveValues, type MessageDescriptorWithValues, type MessageValues, Modal, type ModalOnClose, type ModalProps, ModalVerticalPosition, ModalWidthType, FormattedAmount as NextFormattedAmount, type FormattedAmountProps as NextFormattedAmountProps, NumberInput, NumberInputField, type NumberInputFieldProps, type NumberInputProps, Overflow, Paper, type PaperProps, PaperShadow, PhoneInput, PhoneInputField, type PhoneInputFieldProps, type PhoneInputProps, type PrimitiveMessageValues, ProgressPaper, type ProgressPaperProps, Radio, RadioButton, RadioButtonGroup, RadioButtonGroupControl, type RadioButtonGroupControlProps, RadioButtonGroupField, type RadioButtonGroupFieldProps, type RadioButtonGroupItem, RadioButtonGroupLayout, type RadioButtonGroupProps, type RadioButtonLabel, type RadioButtonProps, RadioControl, type RadioControlProps, RadioField, type RadioFieldProps, RadioGroup, RadioGroupControl, type RadioGroupControlProps, RadioGroupDirection, RadioGroupField, type RadioGroupFieldProps, type RadioGroupItem, type RadioGroupProps, RadioPosition, type RadioProps, ReCaptchaType, type ReCaptchaV3Config, ReasonForClosing, SearchInput, type SearchInputProps, Select, SelectControl, type SelectControlProps, SelectField, type SelectFieldProps, type SelectItem, type SelectItemOrder, SelectItemOrderSource, type SelectProps, SelectVariant, Slider, type SliderAriaValueTextFormatter, type SliderAriaValueTextFormatterDataContext, type SliderBreakpoint, SliderInput, SliderInputField, type SliderInputFieldProps, type SliderInputLimitExceededLiveTextFormatter, type SliderInputLimitExceededLiveTextFormatterDataContext, type SliderInputProps, SliderInputRoundingType, type SliderMinMaxLabels, type SliderProps, SliderStepType, type SliderSteps, Spacing, SpanButton, type SpanButtonProps, Stack, StackDirection, type StackProps, type SubmitHandler, type TabItemType, Table, TableBody, type TableBodyProps, TableData, type TableDataProps, TableHead, TableHeadData, type TableHeadDataProps, type TableHeadProps, type TableProps, TableRow, type TableRowProps, TableTextAlign, TableVariant, Tabs, TabsActiveTabDefaultPosition, TabsItem, type TabsItemProps, type TabsProps, TabsSize, type TabsType, TabsVariant, Tag, TagIconPosition, type TagProps, TagSize, TagTextTransform, TagType, TextArea, TextAreaField, type TextAreaFieldProps, type TextAreaProps, TextDecoration, TextInput, TextInputField, type TextInputFieldProps, type TextInputProps, type Theme, type ThrownFieldLevelError, type ThrownFormErrors, type ThrownFormLevelError, ThrownFormLevelErrorType, Toggle, type ToggleProps, TooltipCloseReason, type TooltipDescriptor, TooltipGeneral, type TooltipGeneralProps, TooltipInfo, TooltipInfoConditional, type TooltipInfoConditionalProps, type TooltipInfoDescriptor, TooltipInfoDisplayMethod, TooltipInfoDisplayableCheck, type TooltipInfoDisplayableCheckProps, type TooltipInfoProps, TooltipPlacement, type TooltipRenderParent, TrailingTextInput, type TrailingTextInputProps, Typography, type TypographyProps, TypographyTextAlign, TypographyVariant, type UseColorSchemeOptions, type UseColorSchemeParam, type UseDesignSystemOptions, type UseDesignSystemParam, type UseFormHandleSubmit, type UseFormProps, type UseFormReCaptchaProp, type UseFormReturn, type UseFormSuccessOutcomeManagerReturn, type UseFormatAmountParam, type UseMediaTypeOptions, type UseMediaTypeParam, VisuallyHidden, type VisuallyHiddenProps, datePickerValueFormat, getColor, getTextDecorationStyle, identityFormatter, isRenderable, jsonFormatter, resolveBorderRadiusValue, resolveFlexWrapValue, resolveFontWeightValue, resolveOverflowValue, resolveSpacingValue, resolveTextDecorationValue, styled, theme, useChooseColor, useColorScheme, useCreateTooltipInfoDescriptor, useDesignSystem, useFieldConfig, useFieldLabels, useForm, useFormContext, useFormSuccessOutcomeManager, useFormatAmount$1 as useFormatAmount, useFormattedPercentage, useGetFormattedHtmlMessageIfDisplayable, useIsMessageDisplayable, useMediaType, useMessageFormatter, useFormatAmount as useNextFormatAmount, useRegisterFieldLabel, withFieldWrapper, withMaskedInputField };