UNPKG

@maskito/kit

Version:

The optional framework-agnostic Maskito's package with ready-to-use masks

55 lines 1.85 kB
/** * {@link https://unicode-table.com/en/00A0/ Non-breaking space}. */ export declare const CHAR_NO_BREAK_SPACE = "\u00A0"; /** * {@link https://symbl.cc/en/200B/ Zero width space}. */ export declare const CHAR_ZERO_WIDTH_SPACE = "\u200B"; /** * {@link https://unicode-table.com/en/2013/ EN dash} * is used to indicate a range of numbers or a span of time. * @example 2006–2022 */ export declare const CHAR_EN_DASH = "\u2013"; /** * {@link https://unicode-table.com/en/2014/ EM dash} * is used to mark a break in a sentence. * @example Taiga UI — powerful set of open source components for Angular * ___ * Don't confuse with {@link CHAR_EN_DASH} or {@link CHAR_HYPHEN}! */ export declare const CHAR_EM_DASH = "\u2014"; /** * {@link https://unicode-table.com/en/002D/ Hyphen (minus sign)} * is used to combine words. * @example well-behaved * ___ * Don't confuse with {@link CHAR_EN_DASH} or {@link CHAR_EM_DASH}! */ export declare const CHAR_HYPHEN = "-"; /** * {@link https://unicode-table.com/en/2212/ Minus} * is used as math operator symbol or before negative digits. * --- * Can be used as `−`. Don't confuse with {@link CHAR_HYPHEN} */ export declare const CHAR_MINUS = "\u2212"; /** * {@link https://symbl.cc/en/30FC/ Katakana-Hiragana Prolonged Sound Mark} * is used as prolonged sounds in Japanese. */ export declare const CHAR_JP_HYPHEN = "\u30FC"; /** * {@link https://symbl.cc/en/003A/ Colon} * is a punctuation mark that connects parts of a text logically. * --- * is also used as separator in time. */ export declare const CHAR_COLON = ":"; /** * {@link https://symbl.cc/en/FF1A/ Full-width colon} * is a full-width punctuation mark used to separate parts of a text commonly in Japanese. */ export declare const CHAR_JP_COLON = "\uFF1A"; //# sourceMappingURL=unicode-characters.d.ts.map