UNPKG

@base-ui-components/react

Version:

Base UI is a library of headless ('unstyled') React components and low-level hooks. You gain complete control over your app's CSS and accessibility features.

31 lines 1.75 kB
export declare const HAN_NUMERALS: string[]; export declare const HAN_NUMERAL_TO_DIGIT: Record<string, string>; export declare const ARABIC_NUMERALS: string[]; export declare const PERSIAN_NUMERALS: string[]; export declare const FULLWIDTH_NUMERALS: string[]; export declare const PERCENTAGES: string[]; export declare const PERMILLE: string[]; export declare const UNICODE_MINUS_SIGNS: string[]; export declare const UNICODE_PLUS_SIGNS: string[]; export declare const FULLWIDTH_DECIMAL = "\uFF0E"; export declare const FULLWIDTH_GROUP = "\uFF0C"; export declare const ARABIC_RE: RegExp; export declare const PERSIAN_RE: RegExp; export declare const FULLWIDTH_RE: RegExp; export declare const HAN_RE: RegExp; export declare const PERCENT_RE: RegExp; export declare const PERMILLE_RE: RegExp; export declare const ARABIC_DETECT_RE: RegExp; export declare const PERSIAN_DETECT_RE: RegExp; export declare const HAN_DETECT_RE: RegExp; export declare const FULLWIDTH_DETECT_RE: RegExp; export declare const BASE_NON_NUMERIC_SYMBOLS: readonly [".", ",", ".", ",", "٫", "٬"]; export declare const SPACE_SEPARATOR_RE: RegExp; export declare const PLUS_SIGNS_WITH_ASCII: string[]; export declare const MINUS_SIGNS_WITH_ASCII: string[]; export declare const ANY_MINUS_RE: RegExp; export declare const ANY_PLUS_RE: RegExp; export declare const ANY_MINUS_DETECT_RE: RegExp; export declare const ANY_PLUS_DETECT_RE: RegExp; export declare function getNumberLocaleDetails(locale?: Intl.LocalesArgument, options?: Intl.NumberFormatOptions): Partial<Record<keyof Intl.NumberFormatPartTypeRegistry, string | undefined>>; export declare function parseNumber(formattedNumber: string, locale?: Intl.LocalesArgument, options?: Intl.NumberFormatOptions): number | null;