@snowball-tech/fractal
Version:
Fractal's (Snowball's design system) React component library based on RadixUI and PandaCSS
71 lines (69 loc) • 2.06 kB
TypeScript
declare const GROUP_NAME = "emoji-picker";
declare enum Categories {
Activity = "activity",
Flags = "flags",
Foods = "foods",
Frequent = "frequent",
Nature = "nature",
Objects = "objects",
People = "people",
Places = "places",
Symbols = "symbols"
}
declare const DEFAULT_CATEGORIES: Categories[];
declare enum Locales {
Ar = "ar",
Be = "be",
Cs = "cs",
De = "de",
En = "en",
Es = "es",
Fa = "fa",
Fi = "fi",
Fr = "fr",
Hi = "hi",
It = "it",
Ja = "ja",
Ko = "ko",
Nl = "nl",
Pl = "pl",
Pt = "pt",
Ru = "ru",
Sa = "sa",
Tr = "tr",
Uk = "uk",
Vi = "vi",
Zh = "zh"
}
declare const DEFAULT_LOCALE = Locales.En;
declare enum Positions {
Bottom = "bottom",
Top = "top"
}
declare const DEFAULT_NAV_POSITION = Positions.Top;
declare const DEFAULT_PREVIEW_POSITION = Positions.Bottom;
declare enum SearchPositions {
Static = "static",
Sticky = "sticky"
}
declare const DEFAULT_SEARCH_POSITION = SearchPositions.Sticky;
declare enum SkinTonePositions {
Preview = "preview",
Search = "search"
}
declare const DEFAULT_SKIN_TONE_POSITION = SkinTonePositions.Preview;
declare enum EmojisSets {
Apple = "apple",
Facebook = "facebook",
Google = "google",
Native = "native",
Twitter = "twitter"
}
declare const DEFAULT_EMOJIS_SET = EmojisSets.Native;
declare const SKIN_TONES: readonly [1, 2, 3, 4, 5, 6];
type SkinTone = (typeof SKIN_TONES)[number];
declare const DEFAULT_SKIN_TONE: SkinTone;
declare const VERSIONS: readonly [1, 2, 3, 4, 5, 11, 12, 12.1, 13, 13.1, 14, 15];
type Version = (typeof VERSIONS)[number];
declare const DEFAULT_VERSION: Version;
export { Categories, DEFAULT_CATEGORIES, DEFAULT_EMOJIS_SET, DEFAULT_LOCALE, DEFAULT_NAV_POSITION, DEFAULT_PREVIEW_POSITION, DEFAULT_SEARCH_POSITION, DEFAULT_SKIN_TONE, DEFAULT_SKIN_TONE_POSITION, DEFAULT_VERSION, EmojisSets, GROUP_NAME, Locales, Positions, SKIN_TONES, SearchPositions, type SkinTone, SkinTonePositions, VERSIONS, type Version };