From 808138de633e410c1d3867d4fb7cb74967647605 Mon Sep 17 00:00:00 2001 From: Ellie Huxtable Date: Tue, 30 Jul 2024 16:54:10 +0100 Subject: chore: remove ui directory (#2329) This is still in development, but rather than clutter the commit history and issues with an unreleased project I've split the UI into its own repo. Once ready for release, I'll either merge the ui code back in, or just make the repo public. --- ui/src/lib/utils.ts | 48 ------------------------------------------------ 1 file changed, 48 deletions(-) delete mode 100644 ui/src/lib/utils.ts (limited to 'ui/src/lib/utils.ts') diff --git a/ui/src/lib/utils.ts b/ui/src/lib/utils.ts deleted file mode 100644 index db66b3be..00000000 --- a/ui/src/lib/utils.ts +++ /dev/null @@ -1,48 +0,0 @@ -import type { ClassValue } from "clsx"; - -import clsx from "clsx"; -import { extendTailwindMerge } from "tailwind-merge"; - -const COMMON_UNITS = ["small", "medium", "large"]; - -/** - * We need to extend the tailwind merge to include NextUI's custom classes. - * - * So we can use classes like `text-small` or `text-default-500` and override them. - */ -const twMerge = extendTailwindMerge({ - extend: { - theme: { - opacity: ["disabled"], - spacing: ["divider"], - borderWidth: COMMON_UNITS, - borderRadius: COMMON_UNITS, - }, - classGroups: { - shadow: [{ shadow: COMMON_UNITS }], - "font-size": [{ text: ["tiny", ...COMMON_UNITS] }], - "bg-image": ["bg-stripe-gradient"], - }, - }, -}); - -export function cn(...inputs: ClassValue[]) { - return twMerge(clsx(inputs)); -} - -// edge still uses the old one -export function getWeekInfo() { - let locale = new Intl.Locale(navigator.language); - - // @ts-ignore - if (locale.getWeekInfo) { - // @ts-ignore - return locale.getWeekInfo(); - // @ts-ignore - } else if (locale.weekInfo) { - // @ts-ignore - return locale.weekInfo; - } - - throw new Error("Could not fetch week info via new or old api"); -} -- cgit v1.3.1