@frontfriend/tailwind 4.0.8 → 4.0.10

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/next.js.map CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../lib/core/constants.js", "../lib/core/errors.js", "../lib/core/file-utils.js", "../lib/core/cache-manager.js", "../lib/core/default-config-data.js", "../lib/core/default-config.js", "../next.js"],
4
- "sourcesContent": ["/**\n * Configuration constants for FrontFriend Tailwind v2\n */\n\n// API Configuration\nconst DEFAULT_API_URL = 'https://app.frontfriend.dev';\nconst LEGACY_API_URL = 'https://registry-legacy.frontfriend.dev';\n\n// Cache Configuration\nconst CACHE_DIR_NAME = '.cache/frontfriend';\nconst CACHE_TTL_DAYS = 7;\nconst CACHE_TTL_MS = CACHE_TTL_DAYS * 24 * 60 * 60 * 1000;\n\n// File names\nconst CACHE_FILES = {\n JS: [\n 'tokens.js',\n 'variables.js',\n 'semanticVariables.js',\n 'semanticDarkVariables.js',\n 'safelist.js',\n 'custom.js'\n ],\n JSON: [\n 'fonts.json',\n 'icons.json',\n 'components-config.json',\n 'version.json',\n 'metadata.json'\n ]\n};\n\n// Environment variables\nconst ENV_VARS = {\n FF_ID: 'FF_ID',\n FF_API_URL: 'FF_API_URL',\n FF_USE_LOCAL: 'FF_USE_LOCAL',\n FF_AUTH_TOKEN: 'FF_AUTH_TOKEN'\n};\n\nmodule.exports = {\n DEFAULT_API_URL,\n LEGACY_API_URL,\n CACHE_DIR_NAME,\n CACHE_TTL_DAYS,\n CACHE_TTL_MS,\n CACHE_FILES,\n ENV_VARS\n};", "class APIError extends Error {\n constructor(message, statusCode, url) {\n super(message);\n this.name = 'APIError';\n this.statusCode = statusCode;\n this.url = url;\n this.code = `API_${statusCode}`;\n }\n}\n\nclass CacheError extends Error {\n constructor(message, operation) {\n super(message);\n this.name = 'CacheError';\n this.operation = operation;\n this.code = `CACHE_${operation.toUpperCase()}`;\n }\n}\n\nclass ConfigError extends Error {\n constructor(message, field) {\n super(message);\n this.name = 'ConfigError';\n this.field = field;\n // `field` is optional; guard so a missing field never crashes (and masks)\n // the real error with `Cannot read properties of undefined (toUpperCase)`.\n this.code = field ? `CONFIG_${String(field).toUpperCase()}` : 'CONFIG_ERROR';\n }\n}\n\nclass ProcessingError extends Error {\n constructor(message, token) {\n super(message);\n this.name = 'ProcessingError';\n this.token = token;\n this.code = 'PROCESSING_ERROR';\n }\n}\n\nmodule.exports = {\n APIError,\n CacheError,\n ConfigError,\n ProcessingError\n};", "const fs = require('fs');\n\n/**\n * Read a JSON file safely, returning null if file doesn't exist\n * @param {string} filepath - Path to the JSON file\n * @returns {Object|null} Parsed JSON or null if file not found\n * @throws {Error} If JSON is invalid\n */\nfunction readJsonFileSafe(filepath) {\n try {\n const content = fs.readFileSync(filepath, 'utf8');\n return JSON.parse(content);\n } catch (error) {\n if (error.code === 'ENOENT') {\n return null; // File not found, return null like API would return 404\n }\n throw error;\n }\n}\n\n/**\n * Read a file safely, returning null if file doesn't exist\n * Strips UTF-8 BOM if present (fixes Windows compatibility)\n * @param {string} filepath - Path to the file\n * @returns {string|null} File content or null if file not found\n * @throws {Error} For other file system errors\n */\nfunction readFileSafe(filepath) {\n try {\n const content = fs.readFileSync(filepath, 'utf8');\n // Strip UTF-8 BOM if present (Windows compatibility)\n return content.replace(/^\\uFEFF/, '');\n } catch (error) {\n if (error.code === 'ENOENT') {\n return null; // File not found\n }\n throw error;\n }\n}\n\n/**\n * Write JSON data to a file with proper formatting\n * @param {string} filepath - Path to write the file\n * @param {Object} data - Data to write\n * @param {number} indent - Indentation level (default: 2)\n */\nfunction writeJsonFile(filepath, data, indent = 2) {\n const content = JSON.stringify(data, null, indent);\n fs.writeFileSync(filepath, content, 'utf8');\n}\n\n/**\n * Write plain text content to a file\n * @param {string} filepath - Path to write the file\n * @param {string} content - Text content to write\n */\nfunction writeTextFile(filepath, content) {\n fs.writeFileSync(filepath, content, 'utf8');\n}\n\n/**\n * Write module.exports file with JSON data\n * @param {string} filepath - Path to write the file\n * @param {Object} data - Data to export\n */\nfunction writeModuleExportsFile(filepath, data) {\n // Handle empty data cases\n if (data === null || data === undefined || \n (typeof data === 'object' && Object.keys(data).length === 0) ||\n (Array.isArray(data) && data.length === 0)) {\n const emptyContent = Array.isArray(data) ? '[]' : '{}';\n const content = `module.exports = ${emptyContent};`;\n fs.writeFileSync(filepath, content, 'utf8');\n } else {\n const content = `module.exports = ${JSON.stringify(data, null, 2)};`;\n fs.writeFileSync(filepath, content, 'utf8');\n }\n}\n\n/**\n * Check if a file exists\n * @param {string} filepath - Path to check\n * @returns {boolean} True if file exists\n */\nfunction fileExists(filepath) {\n return fs.existsSync(filepath);\n}\n\n/**\n * Create directory recursively\n * @param {string} dirpath - Directory path to create\n */\nfunction ensureDirectoryExists(dirpath) {\n fs.mkdirSync(dirpath, { recursive: true });\n}\n\n/**\n * Remove directory recursively\n * @param {string} dirpath - Directory path to remove\n */\nfunction removeDirectory(dirpath) {\n fs.rmSync(dirpath, { recursive: true, force: true });\n}\n\nmodule.exports = {\n readJsonFileSafe,\n readFileSafe,\n writeJsonFile,\n writeTextFile,\n writeModuleExportsFile,\n fileExists,\n ensureDirectoryExists,\n removeDirectory\n};\n", "const path = require('path');\nconst { CACHE_DIR_NAME, CACHE_TTL_MS, CACHE_FILES } = require('./constants');\nconst { CacheError } = require('./errors');\nconst { readJsonFileSafe, readFileSafe, writeJsonFile, writeTextFile, writeModuleExportsFile, fileExists, ensureDirectoryExists, removeDirectory } = require('./file-utils');\n\nclass CacheManager {\n constructor(appRoot = process.cwd()) {\n this.appRoot = appRoot;\n this.cacheDir = path.join(appRoot, 'node_modules', CACHE_DIR_NAME);\n this.metadataFile = path.join(this.cacheDir, 'metadata.json');\n this.maxAge = CACHE_TTL_MS;\n }\n\n /**\n * Get the cache directory path\n * @returns {string} Cache directory path\n */\n getCacheDir() {\n return this.cacheDir;\n }\n\n /**\n * Check if cache directory exists\n * @returns {boolean} True if cache exists\n */\n exists() {\n return fileExists(this.cacheDir);\n }\n\n /**\n * Check if cache is valid (exists and not expired)\n * @returns {boolean} True if cache is valid\n */\n isValid() {\n if (!this.exists()) {\n return false;\n }\n\n try {\n const metadata = readJsonFileSafe(this.metadataFile);\n if (!metadata) {\n return false;\n }\n\n const timestamp = new Date(metadata.timestamp).getTime();\n const now = Date.now();\n \n return (now - timestamp) < this.maxAge;\n } catch (error) {\n return false;\n }\n }\n\n /**\n * Load all cached data\n * @returns {Object|null} Cached data object or null if not found\n */\n load() {\n if (!this.exists()) {\n return null;\n }\n\n try {\n const data = {};\n \n // Load all .js files\n for (const file of CACHE_FILES.JS) {\n const filePath = path.join(this.cacheDir, file);\n if (fileExists(filePath)) {\n // Remove .js extension for key\n const key = file.replace('.js', '');\n try {\n // Use a more secure approach - parse the exported data\n const content = readFileSafe(filePath);\n if (content !== null) {\n // Create a safe evaluation context\n const moduleExports = {};\n const fakeModule = { exports: moduleExports };\n \n // Use Function constructor to evaluate in isolated scope\n const evalFunc = new Function('module', 'exports', content);\n evalFunc(fakeModule, moduleExports);\n\n data[key] = fakeModule.exports;\n }\n } catch (e) {\n // Log parsing errors to help debug Windows/encoding issues\n console.warn(`[Frontfriend] Failed to load ${file}: ${e.message}`);\n if (e.message.includes('Unexpected token') || e.message.includes('Invalid character')) {\n console.warn('[Frontfriend] This might be a BOM or encoding issue. Try deleting node_modules/.cache/frontfriend and running `npx frontfriend init` again.');\n }\n }\n }\n }\n\n // Load all .json files\n for (const file of CACHE_FILES.JSON) {\n const filePath = path.join(this.cacheDir, file);\n const key = file.replace('.json', '');\n const content = readJsonFileSafe(filePath);\n if (content !== null) {\n data[key] = content;\n }\n }\n\n // Rename components-config to componentsConfig for consistency\n if (data['components-config']) {\n data.componentsConfig = data['components-config'];\n delete data['components-config'];\n }\n\n // Backward compatibility: rename cls to safelist if present\n if (data.cls && !data.safelist) {\n data.safelist = data.cls;\n delete data.cls;\n }\n\n return data;\n } catch (error) {\n throw new CacheError(`Failed to load cache: ${error.message}`, 'read');\n }\n }\n\n /**\n * Save data to cache\n * @param {Object} data - Data object to save\n * @throws {Error} If save operation fails\n */\n save(data) {\n try {\n // Create cache directory\n ensureDirectoryExists(this.cacheDir);\n\n // Save metadata first\n const metadata = {\n timestamp: new Date().toISOString(),\n version: data.metadata?.version || '2.0.0',\n ffId: data.metadata?.ffId\n };\n writeJsonFile(this.metadataFile, metadata);\n\n // Save .js files\n const jsFiles = [\n 'tokens',\n 'variables',\n 'semanticVariables',\n 'semanticDarkVariables',\n 'safelist',\n 'custom'\n ];\n\n for (const key of jsFiles) {\n if (data[key] !== undefined) {\n const filePath = path.join(this.cacheDir, `${key}.js`);\n writeModuleExportsFile(filePath, data[key]);\n }\n }\n \n // Also check for safelist specifically since it might be an array\n if (data.safelist && Array.isArray(data.safelist)) {\n const safelistPath = path.join(this.cacheDir, 'safelist.js');\n writeModuleExportsFile(safelistPath, data.safelist);\n }\n\n // Save .json files\n const jsonData = {\n fonts: data.fonts,\n icons: data.icons || data.iconSet,\n 'components-config': data.componentsConfig,\n version: data.version\n };\n\n for (const [key, value] of Object.entries(jsonData)) {\n if (value !== undefined) {\n const filePath = path.join(this.cacheDir, `${key}.json`);\n writeJsonFile(filePath, value);\n }\n }\n\n // Save Tailwind v4 CSS artifacts when generated by the token processor\n if (data.themeCSS !== undefined) {\n writeTextFile(path.join(this.cacheDir, 'theme.css'), data.themeCSS);\n }\n\n if (data.classesContent !== undefined) {\n writeTextFile(path.join(this.cacheDir, 'classes.css'), data.classesContent);\n }\n } catch (error) {\n throw new CacheError(`Failed to save cache: ${error.message}`, 'write');\n }\n }\n\n /**\n * Clear the cache directory\n */\n clear() {\n if (this.exists()) {\n removeDirectory(this.cacheDir);\n }\n }\n}\n\nmodule.exports = CacheManager;\n", "// Neutral bundled Master Design System fallback for Tailwind v4 registry components.\n// Structure + FrontFriend-only components are derived from\n// packages/frontfriend-tailwind/scripts/master-components-config.json (colors neutralized).\n// shadcn-covered components (button, badge, input) have their root/variant/size classes\n// re-authored from the shadcn new-york-v4 sources so the out-of-the-box fallback renders\n// like a stock shadcn install (token-driven --radius, shadcn size scale + treatments).\n// Run `node packages/frontfriend-tailwind/scripts/update-default-config-data.js` to regenerate.\n// Do not edit this file by hand.\n\nmodule.exports = {\n \"accordion\": {\n \"root\": \"border border-border rounded-md [&>*:last-child]:border-b-0 font-primary\",\n \"font\": \"font-primary text-primary\",\n \"last\": \"[&>*]:border-b-0\",\n \"header\": \"flex\",\n \"item\": \"border-b border-border\",\n \"trigger\": {\n \"root\": \"flex flex-1 items-center text-primary active:text-primary/90 justify-between p-4 font-semibold transition-all [&[data-state=open]>svg]:rotate-180\",\n \"icon\": \"shrink-0 transition-transform duration-200\"\n },\n \"content\": {\n \"root\": \"overflow-hidden text-sm transition-all data-[state=closed]:animate-accordion-up data-[state=open]:animate-accordion-down text-foreground\",\n \"wrapper\": \"p-4 pt-0\"\n }\n },\n \"actionbar\": {\n \"root\": \"pb-safe-bottom w-full justify-center border-t border-border z-20 bg-card items-center absolute bottom-0 left-1/2 transform -translate-x-1/2 flex\",\n \"content\": \"gap-3 lg:gap-8 flex flex-row w-full\",\n \"compact\": \"py-4 px-4\",\n \"relaxed\": \"px-6 py-6\",\n \"maxWidth\": \"max-w-2xl\",\n \"align\": {\n \"start\": \"justify-start\",\n \"end\": \"justify-end\",\n \"center\": \"justify-center\",\n \"justify\": \"justify-between\",\n \"stretch\": \"[&>*]:flex-1\"\n }\n },\n \"alert\": {\n \"root\": \"relative w-full rounded-md min-h-12 border gap-2 p-4 [&>svg~*]:pl-7 flex flex-col justify-center [&>svg]:absolute [&>svg]:left-4 [&>svg]:top-4 font-primary shadow-sm\",\n \"variant\": {\n \"default\": \"bg-muted border border-transparent [&>svg]:text-muted-foreground text-foreground [&>div]:text-muted-foreground\",\n \"destructive\": \"bg-destructive border border-transparent [&>svg]:text-destructive-foreground text-destructive-foreground\",\n \"info\": \"bg-primary border border-transparent [&>svg]:text-primary-foreground text-primary-foreground\",\n \"success\": \"bg-primary border border-transparent [&>svg]:text-primary-foreground text-primary-foreground\",\n \"warning\": \"bg-primary border border-transparent [&>svg]:text-primary-foreground text-primary-foreground\",\n \"brand\": \"bg-primary border border-transparent [&>svg]:text-primary-foreground text-primary-foreground\"\n },\n \"title\": \"text-base leading-none tracking-tight font-semibold mb-0\",\n \"description\": \"text-sm [&_p]:leading-relaxed leading-relaxed font-normal\"\n },\n \"alertDialog\": {\n \"overlay\": \"fixed inset-0 z-50 bg-black/80 data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0\",\n \"content\": \"font-primary border border-border fixed left-[50%] top-[50%] z-50 max-w-[90vw] grid w-full lg:max-w-lg translate-x-[-50%] translate-y-[-50%] gap-6 border border-border bg-background p-6 shadow-lg duration-200 data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[state=closed]:slide-out-to-left-1/2 data-[state=closed]:slide-out-to-top-[48%] data-[state=open]:slide-in-from-left-1/2 data-[state=open]:slide-in-from-top-[48%] rounded-lg shadow-2xl\",\n \"header\": \"flex flex-col space-y-2 gap-0.5 text-left\",\n \"footer\": \"flex flex-row justify-end gap-4\",\n \"title\": \"text-lg font-semibold text-foreground\",\n \"description\": \"text-sm text-muted-foreground font-medium\",\n \"cancel\": \"sm:mt-0\"\n },\n \"avatar\": {\n \"root\": \"font-primary relative flex size-8 shrink-0 overflow-hidden rounded-full\",\n \"image\": \"aspect-square h-full w-full\",\n \"fallback\": \"bg-muted flex size-full items-center justify-center rounded-full text-sm text-muted-foreground\"\n },\n \"badge\": {\n \"root\": \"font-primary inline-flex w-fit shrink-0 items-center justify-center gap-1 overflow-hidden rounded-full border border-transparent px-2 py-0.5 text-xs font-medium whitespace-nowrap transition-[color,box-shadow] focus-visible:border-ring focus-visible:ring-[3px] focus-visible:ring-ring/50 aria-invalid:border-destructive [&>svg]:pointer-events-none [&>svg]:size-3\",\n \"variant\": {\n \"main\": \"bg-primary border-transparent text-primary-foreground [&>svg]:text-primary-foreground\",\n \"secondary\": \"bg-secondary border-transparent text-secondary-foreground [&>svg]:text-secondary-foreground\",\n \"destructive\": \"bg-destructive border-transparent text-white [&>svg]:text-white\",\n \"success\": \"bg-primary border-transparent text-primary-foreground [&>svg]:text-primary-foreground\",\n \"tertiary\": \"bg-transparent border-border text-foreground [&>svg]:text-foreground\",\n \"warning\": \"bg-primary border-transparent text-primary-foreground [&>svg]:text-primary-foreground\",\n \"brand\": \"bg-primary border-transparent text-primary-foreground [&>svg]:text-primary-foreground\",\n \"informative\": \"bg-primary border-transparent text-primary-foreground [&>svg]:text-primary-foreground\",\n \"highlight\": \"bg-primary border-transparent text-primary-foreground [&>svg]:text-primary-foreground\",\n \"subtle\": {\n \"main\": \"bg-primary border-transparent text-primary-foreground [&>svg]:text-primary-foreground\",\n \"secondary\": \"bg-primary border-transparent text-primary-foreground [&>svg]:text-primary-foreground\",\n \"destructive\": \"bg-destructive border-transparent text-destructive-foreground [&>svg]:text-destructive-foreground\",\n \"success\": \"bg-primary border-transparent text-primary-foreground [&>svg]:text-primary-foreground\",\n \"warning\": \"bg-primary border-transparent text-primary-foreground [&>svg]:text-primary-foreground\",\n \"tertiary\": \"bg-muted border-transparent text-foreground [&>svg]:text-foreground\",\n \"brand\": \"bg-primary border-transparent text-primary-foreground [&>svg]:text-primary-foreground\",\n \"informative\": \"bg-primary border-transparent text-primary-foreground [&>svg]:text-primary-foreground\",\n \"highlight\": \"bg-primary border-transparent text-primary-foreground [&>svg]:text-primary-foreground\"\n }\n },\n \"dismissable\": \"hover:opacity-80\",\n \"icon\": \"cursor-pointer\",\n \"bullet\": \"p-0.5 w-5 h-5\"\n },\n \"button\": {\n \"root\": \"font-primary group inline-flex shrink-0 items-center justify-center gap-2 rounded-md text-sm font-medium whitespace-nowrap transition-all outline-none focus-visible:border-ring focus-visible:ring-[3px] focus-visible:ring-ring/50 disabled:pointer-events-none disabled:opacity-50 aria-invalid:border-destructive aria-invalid:ring-destructive/20\",\n \"variant\": {\n \"main\": \"bg-primary text-primary-foreground hover:bg-primary/90\",\n \"secondary\": \"bg-secondary text-secondary-foreground hover:bg-secondary/80\",\n \"tertiary\": \"border bg-background shadow-xs hover:bg-accent hover:text-accent-foreground\",\n \"destructive\": \"bg-destructive text-white hover:bg-destructive/90 focus-visible:ring-destructive/20\",\n \"ghost\": \"hover:bg-accent hover:text-accent-foreground\",\n \"ghostmain\": \"text-primary hover:bg-accent hover:text-primary/90\",\n \"link\": \"text-primary underline-offset-4 hover:underline\",\n \"linkdestructive\": \"text-destructive underline-offset-4 hover:underline\"\n },\n \"size\": {\n \"default\": \"h-9 px-4 py-2\",\n \"sm\": \"h-8 gap-1.5 px-3\",\n \"lg\": \"h-10 px-6\",\n \"xs\": \"h-6 gap-1 px-2 text-xs\",\n \"icon\": \"size-9\"\n },\n \"icon\": {\n \"root\": \"gap-2\",\n \"size\": {\n \"sm\": \"4\",\n \"default\": \"4\",\n \"lg\": \"4\"\n },\n \"color\": {\n \"main\": \"text-primary-foreground\",\n \"secondary\": \"text-secondary-foreground\",\n \"destructive\": \"text-white\",\n \"ghost\": \"text-foreground group-hover:text-accent-foreground\",\n \"tertiary\": \"text-foreground group-hover:text-accent-foreground\",\n \"ghostmain\": \"text-primary\",\n \"link\": \"text-primary\",\n \"linkdestructive\": \"text-destructive\"\n }\n },\n \"iconPosition\": {\n \"prefix\": {\n \"small\": \"pl-2\",\n \"default\": \"pl-3\",\n \"large\": \"pl-3\"\n },\n \"suffix\": {\n \"small\": \"pr-2\",\n \"default\": \"pr-3\",\n \"large\": \"pr-3\"\n },\n \"default\": {\n \"small\": \"w-8 px-0\",\n \"default\": \"w-9 px-0\",\n \"large\": \"w-10 px-0\"\n }\n },\n \"fullwidth\": {\n \"false\": \"\",\n \"true\": \"w-full\"\n },\n \"defaultVariants\": {\n \"variant\": \"main\",\n \"size\": \"default\"\n },\n \"compoundVariants\": {\n \"links\": \"p-0 text-sm font-medium tracking-0 h-fit\"\n }\n },\n \"calendar\": {\n \"root\": \"p-3 rounded-md font-primary\",\n \"caption\": {\n \"root\": \"flex justify-center pt-1 relative items-center\",\n \"label\": \"text-sm text-foreground leading-snug font-medium\"\n },\n \"months\": \"flex flex-col sm:flex-row space-y-4 sm:space-x-4 sm:space-y-0\",\n \"month\": \"space-y-4\",\n \"nav\": {\n \"root\": \"space-x-1 flex items-center\",\n \"button\": {\n \"root\": \"h-7 w-7 bg-transparent p-0 opacity-50 hover:opacity-100\",\n \"previous\": \"absolute left-1\",\n \"next\": \"absolute right-1\"\n }\n },\n \"row\": \"flex w-full mt-2 cursor-not-allowed\",\n \"table\": \"w-full border-collapse space-y-1\",\n \"head\": {\n \"row\": \"flex\",\n \"cell\": \"text-muted-foreground leading-snug w-9 font-normal text-sm\"\n },\n \"cell\": \"text-center text-sm p-0 relative [&:has([aria-selected])]:bg-muted/80 first:[&:has([aria-selected])]:rounded-l-md last:[&:has([aria-selected])]:rounded-r-md focus-within:relative focus-within:z-20\",\n \"day\": {\n \"root\": \"h-9 w-9 p-0 font-normal text-foreground aria-selected:opacity-100 inline-flex items-center justify-center rounded-md text-sm font-medium transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:opacity-50 disabled:pointer-events-none ring-offset-background hover:bg-muted/80 aria-selected:hover:bg-primary/90\",\n \"range\": {\n \"end\": \"day-range-end\",\n \"middle\": \"aria-selected:bg-muted/80 aria-selected:text-foreground aria-selected:hover:bg-muted/80\"\n },\n \"selected\": \"bg-primary text-primary-foreground hover:bg-primary/90 hover:text-primary-foreground focus:bg-primary focus:text-primary-foreground\",\n \"today\": \"bg-primary text-primary-foreground aria-selected:bg-primary/90 aria-selected:text-primary-foreground aria-selected:hover:bg-primary/90 aria-selected:focus:bg-primary/90\",\n \"outside\": \"opacity-50 opacity-50 aria-selected:text-foreground day-outside aria-selected:bg-muted/80 aria-selected:hover:bg-muted/80 aria-selected:hover:text-foreground aria-selected:focus:bg-muted/80 aria-selected:focus:text-foreground\",\n \"disabled\": \"text-muted-foreground opacity-50\",\n \"hidden\": \"invisible\"\n },\n \"customRoot\": \"p-3 rounded-md font-primary\",\n \"header\": \"flex justify-center pt-1 relative items-center\",\n \"content\": \"grid grid-cols-3 gap-2\",\n \"options\": \"cursor-pointer\",\n \"selectGroup\": \"flex items-center gap-2\",\n \"nativeSelect\": \"h-8 rounded-md border border-input bg-background px-2 text-sm\",\n \"range\": {\n \"root\": \"p-3 rounded-md font-primary\",\n \"container\": \"flex flex-col gap-4 sm:flex-row\",\n \"row\": \"flex w-full mt-2\",\n \"navSpacer\": \"h-7 w-7\"\n }\n },\n \"card\": {\n \"root\": \"flex flex-col gap-6 rounded-xl font-primary border bg-card text-foreground border-border relative py-6 shadow-sm\",\n \"title\": \"text-base text-foreground font-semibold leading-normal\",\n \"description\": \"text-xs font-medium text-muted-foreground\",\n \"header\": \"flex flex-col gap-1.5 px-6\",\n \"content\": \"px-6\",\n \"footer\": \"flex gap-4 items-center px-6\",\n \"footerAlign\": {\n \"justify\": \"flex justify-between\",\n \"end\": \"flex justify-end\",\n \"start\": \"flex justify-start\",\n \"stretch\": \"flex [&>*]:flex-1\"\n },\n \"outside\": \"absolute w-full pt-8 mt-[-16px] -z-10\",\n \"noContent\": \"p-4\"\n },\n \"chart\": {\n \"container\": \"font-primary flex aspect-video justify-center text-xs [&_.recharts-cartesian-axis-tick_text]:fill-muted-foreground [&_.recharts-cartesian-grid_line]:stroke-border/50 [&_.recharts-curve.recharts-tooltip-cursor]:stroke-border [&_.recharts-dot[stroke='#fff']]:stroke-transparent [&_.recharts-layer]:outline-none [&_.recharts-polar-grid_[stroke='#ccc']]:stroke-border [&_.recharts-radial-bar-background-sector]:fill-muted [&_.recharts-rectangle.recharts-tooltip-cursor]:fill-muted [&_.recharts-reference-line-line]:stroke-border [&_.recharts-sector[stroke='#fff']]:stroke-transparent [&_.recharts-sector]:outline-none [&_.recharts-surface]:outline-none\",\n \"dot\": {\n \"indicator\": {\n \"root\": \"items-center\",\n \"size\": \"h-2.5 w-2.5\"\n }\n },\n \"line\": {\n \"indicator\": {\n \"size\": \"w-1\"\n }\n },\n \"dashed\": {\n \"indicator\": {\n \"root\": \"w-0 border-[1.5px] border-dashed bg-transparent\",\n \"label\": \"my-0.5\"\n }\n },\n \"tooltip\": {\n \"root\": \"grid min-w-[8rem] items-start gap-1.5 rounded-lg border border-border/50 bg-background px-2.5 py-1.5 text-xs shadow-xl\",\n \"label\": {\n \"root\": \"font-mono font-medium tabular-nums text-foreground\",\n \"wrapper\": \"font-medium\"\n },\n \"payload\": {\n \"root\": \"flex w-full items-stretch gap-2 [&>svg]:h-2.5 [&>svg]:w-2.5 [&>svg]:text-muted-foreground\",\n \"wrapper\": \"grid gap-1.5\"\n },\n \"indicator\": \"shrink-0 rounded-[2px] border-[--color-border] bg-[--color-bg]\",\n \"value\": \"font-mono font-medium tabular-nums text-foreground\"\n },\n \"legend\": {\n \"content\": {\n \"root\": \"flex items-center justify-center gap-4\",\n \"wrapper\": \"flex items-center gap-1.5 [&>svg]:h-3 [&>svg]:w-3 [&>svg]:text-muted-foreground\"\n },\n \"align\": {\n \"true\": \"pb-3\",\n \"false\": \"pt-3\"\n },\n \"item\": \"h-2 w-2 shrink-0 rounded-[2px]\"\n },\n \"nest\": {\n \"label\": {\n \"false\": \"items-center\",\n \"true\": \"items-end\",\n \"container\": \"grid gap-1.5\",\n \"text\": \"text-muted-foreground\"\n }\n }\n },\n \"checkbox\": {\n \"root\": \"peer size-4 shrink-0 rounded-[4px] border border-border bg-background shadow-xs transition-shadow outline-none focus-visible:border-ring focus-visible:ring-[3px] focus-visible:ring-ring/50 disabled:cursor-not-allowed disabled:opacity-50 data-[state=checked]:border-primary data-[state=checked]:bg-primary data-[state=checked]:text-primary-foreground\",\n \"icon\": \"text-primary-foreground flex items-center justify-center\"\n },\n \"checkboxField\": {\n \"root\": \"flex items-center gap-2 font-primary w-fit\",\n \"disabled\": \"opacity-5\"\n },\n \"command\": {\n \"root\": \"flex h-full flex-col overflow-hidden rounded-2xl bg-background text-popover-foreground py-1 font-primary\",\n \"dialog\": {\n \"content\": \"overflow-hidden p-0 shadow-lg\",\n \"root\": \"[&_[cmdk-group-heading]]:px-2 [&_[cmdk-group-heading]]:font-medium [&_[cmdk-group-heading]]:text-muted-foreground [&_[cmdk-group]:not([hidden])_~[cmdk-group]]:pt-0 [&_[cmdk-group]]:px-2 [&_[cmdk-input-wrapper]_svg]:h-5 [&_[cmdk-input-wrapper]_svg]:w-5 [&_[cmdk-input]]:h-12 [&_[cmdk-item]]:px-2 [&_[cmdk-item]]:py-3 [&_[cmdk-item]_svg]:h-5 [&_[cmdk-item]_svg]:w-5\"\n },\n \"input\": {\n \"root\": \"flex h-11 py-1.5 border-0 w-full border-border rounded-sm text-foreground font-normal leading-normal bg-transparent px-1 text-sm outline-none placeholder:text-muted-foreground disabled:cursor-not-allowed disabled:opacity-50\",\n \"wrapper\": \"flex items-center border-b border-border px-3 text-muted-foreground\",\n \"icon\": \"h-4 w-4 shrink-0\"\n },\n \"list\": \"max-h-[300px] overflow-y-auto overflow-x-hidden\",\n \"empty\": \"py-6 text-center text-sm leading-normal font-normal\",\n \"group\": \"overflow-hidden p-1 text-foreground [&_[cmdk-group-heading]]:px-2 [&_[cmdk-group-heading]]:py-1.5 [&_[cmdk-group-heading]]:text-xs [&_[cmdk-group-heading]]:font-medium [&_[cmdk-group-heading]]:text-muted-foreground\",\n \"separator\": \"-mx-1 h-px bg-muted\",\n \"item\": \"relative flex justify-between cursor-base data-[highlighted]:bg-muted/80 data-[highlighted]:text-foreground hover:bg-muted/80 bg-transparent border-transparent hover:text-foreground disabled:opacity-50 text-foreground select-none items-center rounded-sm px-2 py-1.5 text-sm outline-none data-[selected=true]:bg-muted/80 data-[selected=true]:text-foreground data-[disabled=true]:pointer-events-none data-[disabled=true]:opacity-50\",\n \"shortcut\": \"ml-auto text-xs text-muted-foreground\",\n \"combobox\": {\n \"label\": \"px-2 py-1.5 text-xs font-medium text-muted-foreground\"\n }\n },\n \"datePicker\": {\n \"root\": \"w-[280px] justify-start text-left font-normal gap-y-0 [&>span]:truncate font-primary\",\n \"button\": \"inline-flex items-center justify-center whitespace-nowrap rounded-md text-sm font-normal ring-offset-background transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:pointer-events-none disabled:opacity-50 text-sm font-medium tracking-0 pl-4 pr-4 h-10 bg-muted hover:bg-accent/80 active:bg-accent/80 disabled:opacity-50 border-border hover:border-border active:border-border disabled:opacity-50 border border-t border-b border-r border-l\",\n \"isSelected\": {\n \"true\": \"pointer-events-none\",\n \"false\": \"w-full justify-start\"\n },\n \"trigger\": {\n \"popover\": \"w-fit justify-start font-normal text-sm leading-none\",\n \"text\": \"truncate text-default-mid\",\n \"select\": \"w-full mx-auto mb-2\"\n },\n \"popover\": {\n \"content\": {\n \"root\": \"flex p-0 items-start gap-6 w-auto flex-col h-[563px] bg-popover z-50\",\n \"relaxed\": \"flex p-0 items-start gap-6 w-auto flex-col lg:flex-row h-[522px] lg:h-auto bg-popover z-50\",\n \"range\": \"w-auto p-0 z-50\"\n }\n },\n \"presets\": {\n \"relaxed\": \"flex flex-col items-sart gap-2 w-[150px]\"\n },\n \"separator\": {\n \"root\": \"hidden\",\n \"relaxed\": \"h-[397px] shrink-0 hidden lg:flex\"\n },\n \"dateInput\": {\n \"relaxed\": \"lg:flex-row\",\n \"root\": \"flex justify-between gap-6 w-full flex-col\",\n \"wrapper\": \"flex gap-2 w-full\",\n \"control\": \"w-full justify-center\",\n \"separator\": \"py-1\"\n },\n \"calendar\": {\n \"container\": {\n \"wrapper\": \"h-[457px]\",\n \"root\": \"flex flex-col gap-2 items-start justify-between\",\n \"relaxed\": \"lg:w-[544px] h-[397px]\"\n }\n },\n \"buttons\": {\n \"root\": \"flex-1\",\n \"relaxed\": \"lg:flex-initial\",\n \"trigger\": \"w-fit justify-start\",\n \"container\": {\n \"root\": \"flex gap-2\",\n \"relaxed\": \"lg:pr-4\"\n }\n },\n \"selectContent\": \"z-50\",\n \"fullWidth\": \"w-full\"\n },\n \"dateInput\": {\n \"arrowUp\": \"ArrowUp\",\n \"arrowDown\": \"ArrowDown\",\n \"arrowLeft\": \"ArrowLeft\",\n \"arrowRight\": \"ArrowRight\",\n \"delete\": \"Delete\",\n \"tab\": \"Tab\",\n \"backspace\": \"Backspace\",\n \"enter\": \"Enter\",\n \"root\": \"flex border rounded-lg items-center text-sm px-1 font-medium leading-5 font-primary text-default-subtle h-10 border-border shadow-sm\",\n \"inputs\": {\n \"month\": \"p-0 outline-none w-6 border-none text-center bg-background\",\n \"day\": \"p-0 outline-none w-7 border-none text-center bg-background\",\n \"year\": \"p-0 outline-none w-12 border-none text-center bg-background\"\n },\n \"span\": \"opacity-20 -mx-px\"\n },\n \"dialog\": {\n \"overlay\": \"fixed inset-0 z-50 bg-black/80 data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0\",\n \"content\": \"fixed flex flex-col lg:max-h-[90vh] max-h-[100vh] bg-background font-primary left-[50%] overflow-clip top-[50%] z-50 w-full translate-x-[-50%] translate-y-[-50%] data-[state=open]:animate-in data-[state=closed]:animate-out duration-200 border border-border data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[state=closed]:slide-out-to-left-1/2 data-[state=closed]:slide-out-to-top-[48%] data-[state=open]:slide-in-from-left-1/2 data-[state=open]:slide-in-from-top-[48%] sm:rounded-2xl shadow-2xl\",\n \"body\": \"gap-0 flex flex-col h-full w-full overflow-y-auto mb-20 text-foreground\",\n \"close\": \"absolute right-4 top-4 opacity-70 transition-opacity hover:opacity-100 disabled:pointer-events-none\",\n \"header\": \"flex gap-0.5 flex-col p-6 pr-14 space-y-1.5 text-left bg-card sticky top-0\",\n \"footer\": \"bg-card gap-4 h-20 px-6 items-center fixed bottom-0 w-full flex\",\n \"footerAlign\": {\n \"justify\": \"flex justify-between\",\n \"end\": \"flex justify-end\",\n \"start\": \"flex justify-start\",\n \"stretch\": \"flex [&>*]:flex-1\"\n },\n \"title\": \"text-2xl font-semibold leading-normal tracking-tight text-foreground\",\n \"description\": \"text-sm text-muted-foreground leading-normal font-semibold\",\n \"width\": {\n \"xs\": \"max-w-sm\",\n \"sm\": \"max-w-sm\",\n \"md\": \"max-w-md\",\n \"lg\": \"max-w-lg\",\n \"3xl\": \"max-w-3xl\",\n \"5xl\": \"max-w-5xl\",\n \"full\": \"max-w-full\",\n \"fit\": \"max-w-fit\"\n },\n \"isSm\": \"w-full\",\n \"height\": {\n \"full\": \"h-full\",\n \"auto\": \"h-auto\",\n \"else\": \"h-auto lg:h-full\"\n },\n \"padding\": {\n \"true\": \"px-6\",\n \"false\": \"px-0\"\n }\n },\n \"drawer\": {\n \"overlay\": \"fixed inset-0 z-50 bg-black/80\",\n \"content\": {\n \"root\": \"overflow-clip fixed font-primary z-50 w-full\",\n \"wrapper\": \"w-full h-full flex flex-col rounded-lg border border-border bg-background overflow-clip shadow-2xl\"\n },\n \"header\": \"grid gap-0.5 text-left bg-card p-6 pr-14 sticky top-0 self-stretch\",\n \"footer\": \"flex h-20 gap-4 bg-card items-center p-6 sticky bottom-0 w-full\",\n \"title\": \"text-2xl font-semibold leading-none tracking-tight text-foreground\",\n \"description\": \"text-sm font-semibold text-muted-foreground\",\n \"footerAlign\": {\n \"justify\": \"flex justify-between\",\n \"end\": \"flex justify-end\",\n \"start\": \"flex justify-start\",\n \"stretch\": \"flex [&>*]:flex-1\"\n },\n \"close\": \"absolute right-4 top-4 z-51\",\n \"body\": \"gap-6 flex flex-col h-full w-full overflow-y-auto text-foreground max-h-[calc(100vh-160px)]\",\n \"width\": {\n \"xs\": \"max-w-sm\",\n \"sm\": \"max-w-sm\",\n \"md\": \"max-w-md\",\n \"lg\": \"max-w-lg\",\n \"3xl\": \"max-w-3xl\",\n \"5xl\": \"max-w-5xl\",\n \"full\": \"max-w-full\",\n \"fit\": \"max-w-fit\"\n },\n \"isSm\": \"w-full\",\n \"height\": {\n \"full\": \"h-full\",\n \"auto\": \"h-auto\",\n \"else\": \"h-auto lg:h-full\"\n },\n \"side\": {\n \"left\": \"left-0 bottom-0\",\n \"right\": \"right-0 bottom-0\",\n \"bottom\": \"bottom-0\",\n \"top\": \"top-0\"\n },\n \"lgSide\": {\n \"left\": \"lg:left-0 lg:bottom-0 lg:top-auto lg:right-auto\",\n \"right\": \"lg:right-0 lg:bottom-0 lg:top-auto lg:left-auto\",\n \"bottom\": \"lg:bottom-0 lg:inset-x-auto lg:top-auto\",\n \"top\": \"lg:top-0 lg:inset-x-auto lg:bottom-auto\"\n },\n \"padding\": {\n \"true\": \"px-6\",\n \"false\": \"px-0\"\n },\n \"portal\": {\n \"overlay\": \"no-after\",\n \"content\": \"no_after p-2 max-h-screen\"\n }\n },\n \"dropdown\": {\n \"subTrigger\": {\n \"root\": \"flex cursor-base select-none items-center rounded-sm px-2 py-1.5 text-sm outline-none text-foreground data-[highlighted]:bg-accent/80 data-[highlighted]:border-transparent data-[highlighted]:text-foreground\",\n \"icon\": \"ml-auto\"\n },\n \"subContent\": \"font-primary z-30 min-w-[8rem] overflow-hidden rounded-md border bg-popover p-1 text-popover-foreground shadow-lg data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2\",\n \"content\": \"font-primary z-30 min-w-[8rem] gap-y-1 overflow-hidden border-border rounded-md border bg-popover p-1 text-popover-foreground shadow-md data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2\",\n \"item\": \"group relative leading-snug font-normal border-0 border-transparent gap-x-2 hover:bg-muted/80 hover:border-transparent data-[disabled]:bg-transparent data-[disabled]:border-transparent text-foreground hover:text-foreground data-[disabled]:opacity-50 flex cursor-base select-none bg-transparent items-center rounded-sm px-2 py-1.5 text-sm outline-none transition-colors focus:bg-accent focus:text-accent-foreground data-[disabled]:pointer-events-none data-[disabled]:opacity-50 data-[highlighted]:bg-muted/80 data-[highlighted]:border-transparent data-[highlighted]:text-foreground\",\n \"destructive\": {\n \"item\": \"group relative leading-snug font-normal border-0 border-transparent gap-x-2 hover:bg-muted/80 hover:border-transparent data-[disabled]:bg-transparent data-[disabled]:border-transparent text-destructive hover:text-destructive data-[disabled]:text-destructive flex cursor-base select-none bg-transparent items-center rounded-sm px-2 py-1.5 text-sm outline-none transition-colors focus:bg-accent data-[disabled]:pointer-events-none data-[disabled]:opacity-50 data-[highlighted]:bg-muted/80 data-[highlighted]:border-transparent data-[highlighted]:text-destructive\",\n \"shortcut\": \"ml-auto tracking-widest text-destructive\"\n },\n \"checkbox\": {\n \"item\": \"group relative leading-snug font-normal border-0 border-transparent gap-x-2 hover:bg-accent/80 hover:border-transparent data-[disabled]:bg-transparent data-[disabled]:border-transparent text-foreground hover:text-foreground data-[disabled]:opacity-50 flex cursor-base select-none bg-transparent items-center rounded-sm px-2 py-1.5 text-sm outline-none transition-colors focus:bg-accent focus:text-accent-foreground data-[disabled]:pointer-events-none data-[disabled]:opacity-50 data-[highlighted]:bg-accent/80 data-[highlighted]:border-transparent data-[highlighted]:text-foreground\",\n \"icon\": \"h-4 w-4 shrink-0 justify-center\"\n },\n \"radio\": {\n \"item\": \"relative flex cursor-base select-none items-center rounded-sm py-1.5 pl-8 pr-2 text-sm outline-none transition-colors data-[disabled]:pointer-events-none data-[disabled]:opacity-50 text-foreground data-[highlighted]:bg-accent/80 data-[highlighted]:border-transparent data-[highlighted]:text-foreground\",\n \"icon\": \"absolute left-2 flex h-3.5 w-3.5 items-center justify-center\",\n \"indicator\": \"fill-current\"\n },\n \"label\": \"bg-transparent border-transparent text-foreground px-2 py-1.5 rounded-sm text-sm leading-snug font-semibold\",\n \"separator\": \"-mx-1 my-1 bg-muted h-px\",\n \"inset\": \"pl-8\",\n \"trigger\": \"outline-none\",\n \"shortcut\": \"ml-auto tracking-widest text-muted-foreground group-hover:text-muted-foreground disabled:opacity-50\"\n },\n \"fileupload\": {\n \"root\": \"flex flex-col gap-4 items-center w-[343px] relative\",\n \"uploader\": \"w-full relative shadow-sm shadow-sm rounded-md\",\n \"card\": \"p-4 w-full min-h-[144px] flex flex-col justify-center items-center gap-0 border-border bg-muted shadow-sm\",\n \"dragging\": \"bg-muted\",\n \"container\": \"flex flex-col justify-center items-center gap-1 self-stretch relative\",\n \"name\": \"text-center text-foreground font-primary text-lg w-full truncate font-semibold h-[27px]\",\n \"description\": \"text-center font-primary text-muted-foreground text-sm w-full truncate font-medium h-[27px]\",\n \"list\": {\n \"title\": \"w-full flex justify-between items-center\",\n \"root\": \"w-full font-primary\",\n \"icon\": {\n \"positive\": \"[&>svg]:text-primary\",\n \"negative\": \"[&>svg]:text-destructive\"\n }\n },\n \"spinner\": \"text-primary\",\n \"button\": \"absolute z-20 top-4 right-4\",\n \"cursor\": \"cursor-pointer\",\n \"borderless\": \"border-0\"\n },\n \"form\": {\n \"label\": {\n \"error\": \"text-destructive font-primary\"\n },\n \"description\": \"text-sm text-muted-foreground font-primary\",\n \"message\": \"text-sm font-medium text-destructive font-primary\",\n \"item\": {\n \"vertical\": \"flex flex-col gap-2 w-full\",\n \"horizontal\": \"flex flex-row gap-2 items-center\"\n }\n },\n \"input\": {\n \"root\": \"font-primary flex h-9 w-full min-w-0 rounded-md border border-input bg-transparent px-3 py-1 text-base md:text-sm shadow-xs transition-[color,box-shadow] outline-none text-foreground placeholder:text-muted-foreground file:inline-flex file:h-7 file:border-0 file:bg-transparent file:text-sm file:font-medium file:text-foreground focus-visible:border-ring focus-visible:ring-[3px] focus-visible:ring-ring/50 aria-invalid:border-destructive disabled:cursor-not-allowed disabled:opacity-50\",\n \"file\": \"text-muted-foreground\",\n \"container\": \"relative w-full text-foreground\",\n \"prefixIcon\": {\n \"root\": \"absolute left-3 top-1/2 transform -translate-y-1/2 disabled:opacity-100 disabled:cursor-not-allowed\",\n \"props\": {\n \"size\": \"4\"\n }\n },\n \"prefix\": \"absolute left-3 top-1/2 transform -translate-y-1/2 font-medium text-sm font-primary disabled:opacity-100 disabled:opacity-50 disabled:opacity-50 disabled:cursor-not-allowed\",\n \"prefixSlot\": \"absolute left-3 top-1/2 transform -translate-y-1/2 disabled:opacity-100 disabled:opacity-50 disabled:opacity-50 disabled:cursor-not-allowed\",\n \"suffixIcon\": {\n \"root\": \"absolute right-3 top-1/2 transform -translate-y-1/2 disabled:opacity-100 disabled:cursor-not-allowed\",\n \"props\": {\n \"size\": \"4\"\n }\n },\n \"suffix\": \"absolute right-3 top-1/2 transform -translate-y-1/2 font-medium text-sm font-primary disabled:opacity-100 disabled:opacity-50 disabled:opacity-50 disabled:cursor-not-allowed\",\n \"suffixSlot\": \"absolute right-3 top-1/2 transform -translate-y-1/2 disabled:opacity-100 disabled:opacity-50 disabled:opacity-50 disabled:cursor-not-allowed\",\n \"clearable\": {\n \"root\": \"absolute right-3 top-1/2 transform -translate-y-1/2 disabled:opacity-100 disabled:cursor-not-allowed cursor-pointer w-5 h-5 text-primary hover:text-primary/90 active:text-primary/90 p-0 hover:bg-transparent active:bg-transparent\",\n \"props\": {\n \"size\": \"default\"\n }\n },\n \"passwordIcon\": \"absolute right-3 cursor-pointer top-1/2 transform -translate-y-1/2 font-medium text-sm font-primary disabled:opacity-100 disabled:opacity-50 disabled:opacity-50 disabled:cursor-not-allowed\",\n \"clearableIconSuffix\": \"right-12\",\n \"textCenter\": \"text-center\"\n },\n \"inputOTP\": {\n \"root\": \"flex items-center gap-x-2 has-[:disabled]:opacity-50 font-primary\",\n \"group\": \"flex items-center\",\n \"input\": \"disabled:cursor-not-allowed\",\n \"slot\": {\n \"root\": \"p-3 font-medium relative flex h-10 w-10 bg-background text-muted-foreground items-center justify-center border-y border-r border-border text-sm transition-all first:rounded-l-md first:border-l last:rounded-r-md text-center shadow-sm\",\n \"active\": \"z-10 ring-2\"\n },\n \"fakeCaret\": {\n \"wrapper\": \"pointer-events-none absolute inset-0 flex items-center justify-center\",\n \"root\": \"h-4 w-px animate-caret-blink bg-foreground duration-1000\"\n }\n },\n \"label\": {\n \"root\": \"flex items-center gap-2 text-sm leading-none font-medium select-none font-primary group-data-[disabled=true]:pointer-events-none group-data-[disabled=true]:opacity-50 peer-disabled:cursor-not-allowed peer-disabled:opacity-50\",\n \"main\": \"text-muted-foreground disable:opacity-50\",\n \"secondary\": \"text-muted-foreground disable:opacity-50\",\n \"disabled\": \"opacity-50\"\n },\n \"list\": {\n \"root\": \"gap-y-2 flex flex-col rounded-2xl font-primary text-foreground\",\n \"naked\": {\n \"false\": \"[&>*:last-child]:[&>*:last-child]:border-b-0 [&>*:first-child]:[&>*:last-child]:rounded-t-2xl [&>*:last-child]:[&>*:last-child]:rounded-b-2xl\",\n \"true\": \"[&>*:last-child]:bg-transparent border-0 [&>*:last-child]:border-transparent rounded-none [&>*:last-child>*]:px-0\"\n },\n \"content\": \"border border-border rounded-2xl bg-card\",\n \"shadow\": {\n \"true\": \"[&>*:last-child]:shadow-none\",\n \"false\": \"[&>*:last-child]:shadow-sm\"\n },\n \"item\": \"p-3 px-4 gap-x-3 border-border border-b gap-y-0.5 min-h-14 flex items-center justify-between\",\n \"interactive\": \"hover:bg-primary/90 cursor-pointer\",\n \"wrapper\": \"justify-between flex items-center gap-x-3 w-full\",\n \"inverted\": \"[&>*]:flex-col-reverse\",\n \"attribute\": \"flex flex-col gap-x-1 justify-center\",\n \"first\": \"text-base leading-normal font-medium text-foreground text-right whitespace-nowrap\",\n \"second\": \"text-sm leading-normal font-medium text-muted-foreground text-right whitespace-nowrap\",\n \"itemTitle\": {\n \"root\": \"flex flex-col\",\n \"title\": \"text-base leading-normal font-semibold text-foreground\",\n \"description\": \"text-sm leading-normal font-medium text-muted-foreground\"\n },\n \"title\": {\n \"root\": \"text-primary p-0\",\n \"main\": \"text-base leading-normal font-semibold\",\n \"secondary\": \"text-xs leading-normal font-medium\",\n \"justify\": \"flex justify-between\",\n \"end\": \"flex justify-end\",\n \"start\": \"flex justify-start\",\n \"stretch\": \"flex [&>*]:flex-1\"\n }\n },\n \"navbar\": {\n \"wrapper\": \"font-primary font-medium flex flex-col w-full z-20 absolute w-full top-0 left-1/2 transform -translate-x-1/2 text-sm text-foreground px-6 bg-transparent lg:bg-transparent\",\n \"root\": \"flex flex-col w-full items-center z-20\",\n \"container\": \"flex w-full flex-col items-start z-20 justify-center flex-1\",\n \"relaxed\": \"py-5 px-0 gap-4 gap-y-1\",\n \"compact\": \"py-3 px-0 gap-2\",\n \"content\": \"h-10 flex w-full relative gap-4\",\n \"isTitle\": \"h-auto items-center\",\n \"centerTitle\": \"flex-col items-center\",\n \"external\": \"w-full hidden lg:flex\",\n \"center\": {\n \"root\": \"font-semibold h-full flex items-center max-w-full min-w-0 flex-[2] flex-col justify-center text-center\",\n \"relaxed\": \"text-lg leading-normal\",\n \"text\": \"line-clamp-1 w-full\",\n \"compact\": \"text-lg\"\n },\n \"left\": \"flex flex-1 justify-start items-center h-full gap-2 shrink-0\",\n \"right\": \"flex flex-1 justify-end items-center h-full shrink-0 gap-4\"\n },\n \"page\": {\n \"root\": \"ff-page bg-background lg:bg-card h-screen text-foreground font-primary\",\n \"focus\": \"bg-background lg:bg-background h-auto min-h-screen\",\n \"focusOld\": \"bg-card lg:bg-card\",\n \"inset\": \"bg-background lg:bg-background\",\n \"focus-inset\": \"bg-background lg:bg-background\",\n \"inset-2col\": \"bg-background lg:bg-background\",\n \"inset-max-w\": \"bg-background lg:bg-background\",\n \"inset-no-bg\": \"bg-muted lg:bg-muted\",\n \"side\": {\n \"root\": \"ff-pageSide px-4 py-4 lg:px-8 lg:py-8 pb-1 lg:pb-8 lg:border-border lg:border-r lg:w-80 w-full flex flex-col items-center lg:h-full h-fit lg:min-w-80\",\n \"focus\": \"lg:py-10 lg:px-11 px-5 py-4 pb-4 lg:pb-10 gap-8 min-w-0 lg:min-w-0 lg:rounded-l-3xl rounded-t-3xl lg:rounded-t-none w-full lg:w-full bg-primary flex-col items-start overflow-hidden\"\n },\n \"container\": {\n \"root\": \"ff-pageContainer flex flex-col items-center w-full h-full lg:h-full min-h-full lg:max-w-7xl bg-transparent\",\n \"focus\": \"max-w-5xl min-h-0 h-full lg:h-fit\",\n \"focusOld\": \"bg-transparent lg:bg-transparent max-w-[9999px] lg:max-w-7xl rounded-t-none rounded-b-none border-0 border-border\",\n \"focus-inset\": \"max-w-[358px] lg:max-w-3xl lg:min-h-[536px] min-h-[576px] h-fit lg:h-fit min-h-none rounded-lg border border-border bg-card lg:bg-card shadow-sm relative overflow-hidden pb-18 lg:pb-[88px]\",\n \"inset\": \"max-w-[9999px] lg:max-w-[9999px] rounded-lg border border-border bg-card lg:bg-card shadow-sm relative overflow-hidden shadow-sm pb-18 lg:pb-[88px]\",\n \"inset-max-w\": \"max-w-[9999px] lg:max-w-[9999px] rounded-lg border border-border bg-card lg:bg-card shadow-sm relative overflow-hidden shadow-sm pb-18 lg:pb-[88px]\",\n \"inset-2col\": \"max-w-[9999px] lg:max-w-[1216px] rounded-lg border lg:min-h-0 lg:max-h-[800px] border-border bg-card lg:bg-card shadow-sm relative overflow-hidden shadow-sm\",\n \"inset-no-bg\": \"max-w-[9999px] lg:max-w-[1440px] bg-transparent lg:bg-transparent shadow-sm relative overflow-hidden shadow-sm\"\n },\n \"wrap\": {\n \"root\": \"ff-pageWrap pt-16 pb-0 lg:pb-0 lg:pt-20 flex items-center flex-col self-stretch h-full bg-transparent lg:bg-transparent\",\n \"focusOld\": \"pt-16 pb-28 lg:pt-24 lg:pb-28 h-full\",\n \"focus\": \"lg:pt-0 pt-0 pb-0 lg:pb-0 min-h-screen\",\n \"focus-inset\": \"pt-16 pb-4 lg:pt-20 lg:pb-0 bg-transparent lg:bg-transparent\",\n \"inset\": \"px-0 pb-0 pt-16 lg:pt-20 bg-transparent lg:bg-transparent\",\n \"inset-max-w\": \"px-0 pb-0 pt-16 lg:pt-20 bg-transparent lg:bg-transparent\",\n \"inset-2col\": \"px-0 py-0 lg:px-0 lg:py-0 bg-transparent lg:bg-transparent\",\n \"inset-no-bg\": \"px-0 pb-0 pt-16 lg:pt-20 bg-transparent lg:bg-transparent\"\n },\n \"content\": {\n \"root\": \"ff-pageContent flex gap-16 w-full self-stretch items-start h-full\",\n \"focus\": \"lg:pt-0 pt-0 pb-0 lg:pb-0 border border-border overflow-hidden\",\n \"focus-inset\": \"lg:gap-16 gap-0 justify-center items-start self-stretch w-full\",\n \"focusOld\": \"justify-center\",\n \"inset\": \"gap-16 self-stretch w-full\",\n \"inset-max-w\": \"gap-16 self-stretch w-full justify-center overflow-x-auto lg:overflow-x-hidden\",\n \"inset-2col\": \"lg:gap-16 gap-0 self-stretch w-full justify-center\",\n \"inset-no-bg\": \"lg:gap-16 gap-0 self-stretch w-full items-start\"\n },\n \"main\": {\n \"root\": \"ff-pageMain h-full w-full bg-transparent max-w-none gap-y-6 flex flex-col items-start lg:py-6 lg:px-6 px-4 py-4 max-w-[9999px] flex-1 self-stretch overflow-x-auto lg:overflow-x-hidden\",\n \"focus\": \"lg:px-10 lg:py-10 px-4 ly-4 w-full flex-col justify-center items-start gap-0 lg:min-h-0\",\n \"focusOld\": \"bg-transparent lg:bg-transparent border-transparent lg:border-transparent px-0 py-0 lg:px-0 lg:py-0 max-w-[9999px] lg:max-w-3xl\",\n \"focus-inset\": \"lg:max-w-3xl max-w-[9999px] lg:py-6 lg:px-6 px-4 py-4 lg:gap-6 gap-4 bg-transparent items-start w-full\",\n \"noPadding\": \"lg:px-0 lg:py-0 py-0 px-0\",\n \"inset\": \"lg:min-h-[536px] min-h-[576px] max-w-[9999px] lg:py-6 lg:px-6 px-4 py-4 lg:gap-6 gap-4 bg-transparent lg:items-center items-start\",\n \"inset-2col\": \"lg:min-h-[536px] min-h-[576px] max-w-[9999px] lg:flex-row flex-col-reverse lg:py-0 lg:px-0 px-0 py-0 lg:gap-0 gap-0 bg-transparent lg:items-start items-start\",\n \"inset-no-bg\": \"lg:min-h-[536px] min-h-[576px] max-w-[9999px] lg:py-6 lg:px-6 px-4 py-4 lg:gap-6 gap-4 bg-transparent lg:items-center items-start\",\n \"inset-max-w\": \"lg:min-h-[536px] min-h-[576px] lg:h-fit h-fit lg:max-w-3xl max-w-[9999px] self-stretch lg:py-6 lg:px-6 px-4 py-4 lg:gap-6 gap-4 bg-transparent lg:items-center items-start\"\n },\n \"inner\": {\n \"root\": \"ff-pageInner flex flex-col items-center w-full h-full min-h-full self-stretch bg-card\",\n \"focus\": \"lg:py-6 lg:px-6 px-2 py-2 h-full items-center justify-center min-h-screen bg-transparent\",\n \"noPadding\": \"lg:px-0 lg:py-0 py-0 px-0\",\n \"inset\": \"lg:px-6 px-4 pt-0 lg:pb-6 pb-4 bg-transparent\",\n \"inset-max-w\": \"lg:px-6 px-4 pt-0 lg:pb-6 pb-4 bg-transparent\",\n \"inset-2col\": \"lg:px-6 px-4 lg:pb-6 pb-6 lg:pt-6 pt-4 bg-transparent lg:justify-center\",\n \"focus-inset\": \"lg:px-0 px-0 lg:pt-6 pt-2 lg:pb-12 pb-4 bg-transparent\",\n \"inset-no-bg\": \"lg:px-0 px-0 pt-0 lg:pb-0 pb-0 bg-transparent\"\n }\n },\n \"multiSelect\": {\n \"trigger\": \"flex w-full items-center bg-background h-auto min-h-10 max-h-auto p-3 px-4 justify-between [&_svg]:pointer-events-auto rounded-md font-normal\",\n \"selected\": \"flex justify-between items-center w-full\",\n \"wrapper\": \"flex flex-wrap items-center gap-2\",\n \"optionIcon\": \"mr-2\",\n \"controls\": \"flex items-center justify-between gap-2\",\n \"separator\": \"flex min-h-6 h-full\",\n \"noValue\": \"flex items-center justify-between w-full mx-auto\",\n \"placeholder\": \"text-sm text-muted-foreground mx-3\",\n \"item\": \"cursor-pointer justify-normal gap-1\",\n \"noClearable\": \"ml-2\",\n \"createNew\": \"flex flex-col gap-2 items-center\",\n \"createNewButton\": \"w-fit\",\n \"error\": \"px-3 py-1.5 text-destructive text-xs\",\n \"empty\": \"px-2 py-1.5 text-xs text-muted-foreground\"\n },\n \"pdfViewer\": {\n \"root\": \"w-full h-full font-primary\",\n \"worker\": {\n \"root\": \"rpv-core__viewer flex h-full relative border\",\n \"wrapper\": \"w-full h-full\"\n },\n \"toolbar\": {\n \"root\": \"items-center rounded-sm bottom-6 flex left-1/2 p-1 absolute z-[1] bg-muted translate-x-[-50%]\",\n \"icon\": {\n \"root\": \"px-0 py-0.5\",\n \"center\": \"px-0 py-0.5 ml-auto\"\n }\n },\n \"input\": \"w-[40px] mr-2\",\n \"viewer\": \"flex-1 overflow-hidden\"\n },\n \"phoneInput\": {\n \"root\": \"font-primary focus:placeholder:text-muted-foreground w-full text-foreground file:disabled:placeholder:opacity-50 gap-x-2 file:disabled:opacity-50 file:disabled:opacity-50 file:disabled:opacity-50 leading-relaxed font-medium font-primary text-sm disabled:opacity-100 h-10 file:h-full gap-x-2 px-3 py-2 bg-background border-border placeholder:text-muted-foreground rounded-md focus:ring border focus:ring-blue-600 focus:ring-2 focus:ring-offset-1 focus:bg-muted focus-visible:outline-none focus:border-border focus:text-foreground disabled:opacity-50 disabled:border-border file:border-0 disabled:placeholder:opacity-50 disabled:opacity-50 disabled:opacity-50 file:bg-transparent file:border-border file:placeholder:text-muted-foreground file:text-foreground disabled:cursor-not-allowed [&::-webkit-search-cancel-button]:hidden [&::-webkit-search-decoration]:hidden shadow-sm\",\n \"file\": \"text-muted-foreground\",\n \"container\": \"relative w-full text-foreground\",\n \"prefixIcon\": {\n \"root\": \"absolute left-3 top-1/2 transform -translate-y-1/2 disabled:opacity-100 disabled:cursor-not-allowed\",\n \"props\": {\n \"size\": \"4\"\n }\n },\n \"prefix\": \"absolute left-3 top-1/2 transform -translate-y-1/2 font-medium text-sm font-primary disabled:opacity-100 disabled:opacity-50 disabled:opacity-50 disabled:cursor-not-allowed\",\n \"prefixSlot\": \"absolute left-3 top-1/2 transform -translate-y-1/2 disabled:opacity-100 disabled:opacity-50 disabled:opacity-50 disabled:cursor-not-allowed\",\n \"suffixIcon\": {\n \"root\": \"absolute right-3 top-1/2 transform -translate-y-1/2 disabled:opacity-100 disabled:cursor-not-allowed\",\n \"props\": {\n \"size\": \"4\"\n }\n },\n \"suffix\": \"absolute right-3 top-1/2 transform -translate-y-1/2 font-medium text-sm font-primary disabled:opacity-100 disabled:opacity-50 disabled:opacity-50 disabled:cursor-not-allowed\",\n \"suffixSlot\": \"absolute right-3 top-1/2 transform -translate-y-1/2 disabled:opacity-100 disabled:opacity-50 disabled:opacity-50 disabled:cursor-not-allowed\",\n \"clearable\": {\n \"root\": \"absolute right-3 top-1/2 transform -translate-y-1/2 disabled:opacity-100 disabled:cursor-not-allowed cursor-pointer w-5 h-5 text-primary hover:text-primary/90 active:text-primary/90 p-0 hover:bg-transparent active:bg-transparent\",\n \"props\": {\n \"size\": \"default\"\n }\n },\n \"passwordIcon\": \"absolute right-3 cursor-pointer top-1/2 transform -translate-y-1/2 font-medium text-sm font-primary disabled:opacity-100 disabled:opacity-50 disabled:opacity-50 disabled:cursor-not-allowed\",\n \"clearableIconSuffix\": \"right-12\",\n \"wrapper\": \"flex gap-4\",\n \"selectorWrapper\": \"flex items-center\",\n \"nativeSelect\": \"base-select\",\n \"trigger\": {\n \"layout\": \"flex items-center\"\n },\n \"dialCode\": \"ml-2\",\n \"triggerIcon\": \"ml-2 h-4 w-4\",\n \"flagIcon\": \"-mr-2 h-5 w-5\",\n \"content\": \"w-[300px] p-0\",\n \"item\": \"gap-2\",\n \"itemLabel\": \"flex-1 text-sm\",\n \"input\": \"w-full\",\n \"flag\": \"bg-muted flex h-4 w-6 overflow-hidden rounded-sm\"\n },\n \"popover\": {\n \"root\": \"z-30 font-primary w-72 rounded-md border gap-0 border-border bg-popover text-foreground shadow-md outline-none data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 shadow-md\",\n \"padding\": {\n \"true\": \"p-4\",\n \"false\": \"p-0\"\n },\n \"trigger\": \"rounded-md\"\n },\n \"progress\": {\n \"root\": \"relative h-2 w-full overflow-hidden rounded-full bg-primary/20\",\n \"indicator\": \"h-full w-full rounded-full flex-1 bg-primary transition-all\"\n },\n \"radiogroup\": {\n \"groupe\": \"grid gap-2 font-primary text-foreground\",\n \"item\": \"aspect-square group size-4 shrink-0 bg-background text-primary border-border rounded-full border shadow-xs focus:outline-none focus-visible:ring-[3px] focus-visible:ring-ring/50 disabled:cursor-not-allowed disabled:opacity-50\",\n \"indicator\": \"flex items-center justify-center\",\n \"icon\": \"size-2 rounded-full\",\n \"color\": {\n \"root\": \"text-primary\",\n \"disabled\": \"opacity-50\"\n }\n },\n \"radiogroupeField\": {\n \"root\": \"flex gap-2 font-primary self-stretch p-px\",\n \"disabled\": \"opacity-50\"\n },\n \"segmented\": {\n \"root\": \"relative\",\n \"active\": \"[&>svg]:text-primary\",\n \"icon\": \"text-primary\",\n \"trigger\": \"tab-trigger\",\n \"activeTrigger\": \"tab-trigger-active\",\n \"disabled\": \"pointer-events-none opacity-50\"\n },\n \"select\": {\n \"trigger\": \"flex w-full items-center justify-between gap-2 font-primary rounded-md px-3 py-2 border border-border bg-transparent text-sm text-muted-foreground shadow-xs transition-[color,box-shadow] outline-none focus-visible:border-ring focus-visible:ring-[3px] focus-visible:ring-ring/50 disabled:cursor-not-allowed disabled:opacity-50 [&>span]:truncate h-9\",\n \"scrollButton\": \"flex cursor-base items-center justify-center py-1\",\n \"content\": {\n \"root\": \"font-primary p-1 max-h-96 min-w-32 relative bg-popover text-popover-foreground border-border gap-y-1 border rounded-md z-30 overflow-hidden data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 shadow-md\",\n \"popper\": \"data-[side=bottom]:translate-y-1 data-[side=left]:-translate-x-1 data-[side=right]:translate-x-1 data-[side=top]:-translate-y-1\"\n },\n \"label\": \"text-sm leading-snug font-semibold bg-transparent border-transparent text-foreground pl-8 pr-2 pt-1.5 pb-1.5\",\n \"item\": {\n \"root\": \"select-none focus:outline-none relative flex w-full items-center data-[disabled]:opacity-50 data-[disabled]:opacity-50 rounded-sm pl-8 pr-2 pt-1.5 pb-1.5 font-normal text-sm leading-snug border-0 bg-transparent border-transparent hover:bg-muted/80 hover:border-transparent data-[disabled]:bg-transparent data-[disabled]:border-transparent text-foreground hover:text-foreground data-[highlighted]:text-foreground data-[highlighted]:bg-muted/80 data-[highlighted]:border-transparent\",\n \"icon\": \"absolute left-2 flex h-3.5 w-3.5 items-center justify-center\"\n },\n \"separator\": \"-mx-1 my-1 h-px bg-border\",\n \"viewport\": \"\",\n \"group\": \"w-full\",\n \"icon\": \"opacity-50\"\n },\n \"separator\": {\n \"container\": {\n \"root\": \"flex gap-2 font-primary text-foreground\",\n \"horizontal\": \"flex-row items-center w-full\",\n \"vertical\": \"flex-col items-center h-full\"\n },\n \"root\": \"bg-transparent border-border border-b text-foreground rounded-full font-normal\",\n \"vertical\": \"h-full w-[1px] border-b-0 border-l\",\n \"horizontal\": \"h-[1px] w-full\",\n \"padding\": {\n \"horizontal\": \"py-4\",\n \"vertical\": \"px-4\"\n }\n },\n \"sheet\": {\n \"overlay\": \"fixed inset-0 z-50 bg-black/80 data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0\",\n \"content\": {\n \"base\": \"fixed z-50 gap-4 bg-background p-6 shadow-lg transition ease-in-out data-[state=closed]:duration-300 data-[state=open]:duration-500 data-[state=open]:animate-in data-[state=closed]:animate-out\",\n \"variants\": {\n \"top\": \"inset-x-0 top-0 border-b data-[state=closed]:slide-out-to-top data-[state=open]:slide-in-from-top\",\n \"bottom\": \"inset-x-0 bottom-0 border-t data-[state=closed]:slide-out-to-bottom data-[state=open]:slide-in-from-bottom\",\n \"left\": \"inset-y-0 left-0 h-full w-3/4 border-r data-[state=closed]:slide-out-to-left data-[state=open]:slide-in-from-left sm:max-w-sm\",\n \"right\": \"inset-y-0 right-0 h-full w-3/4 border-l data-[state=closed]:slide-out-to-right data-[state=open]:slide-in-from-right sm:max-w-sm\"\n }\n },\n \"closeButton\": \"absolute right-4 top-4 rounded-sm opacity-70 transition-opacity hover:opacity-100 focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-2 disabled:pointer-events-none data-[state=open]:bg-muted\",\n \"header\": \"flex flex-col space-y-2 text-center sm:text-left\",\n \"footer\": \"flex flex-col-reverse sm:flex-row sm:justify-end sm:space-x-2\",\n \"title\": \"text-lg font-semibold text-foreground\",\n \"description\": \"text-sm text-muted-foreground\",\n \"srOnly\": \"sr-only\"\n },\n \"sidebar\": {\n \"sheet\": {\n \"root\": \"w-[--sidebar-width] bg-background p-0 text-sidebar-foreground [&>button]:hidden\"\n },\n \"provider\": {\n \"wrapper\": \"group/sidebar-wrapper flex min-h-svh w-full has-[[data-variant=inset]]:bg-sidebar\"\n },\n \"root\": {\n \"base\": \"flex h-full w-[--sidebar-width] flex-col bg-background text-sidebar-foreground\",\n \"props\": {\n \"width\": {\n \"root\": \"16rem\",\n \"icon\": \"88px\",\n \"mobile\": \"18rem\"\n },\n \"shortcut\": \"\"\n },\n \"container\": \"flex h-full w-full flex-col\",\n \"default\": \"group peer hidden lg:block\",\n \"wrapper\": {\n \"base\": \"duration-200 relative h-svh w-[--sidebar-width] bg-transparent transition-[width] ease-linear\",\n \"collapsibleOffcanvas\": \"group-data-[collapsible=offcanvas]:w-0\",\n \"flipped\": \"group-data-[side=right]:rotate-180\",\n \"variants\": {\n \"floating\": \"group-data-[collapsible=icon]:w-[calc(var(--sidebar-width-icon)_+_theme(spacing.4))]\",\n \"inset\": \"group-data-[collapsible=icon]:w-[calc(var(--sidebar-width-icon)_+_theme(spacing.4))]\",\n \"default\": \"group-data-[collapsible=icon]:w-[--sidebar-width-icon]\"\n }\n },\n \"fixed\": {\n \"base\": \"duration-200 fixed inset-y-0 z-10 hidden h-svh w-[--sidebar-width] transition-[left,right,width] ease-linear :flex border-border\",\n \"side\": {\n \"left\": \"left-0 group-data-[collapsible=offcanvas]:left-[calc(var(--sidebar-width)*-1)]\",\n \"right\": \"right-0 group-data-[collapsible=offcanvas]:right-[calc(var(--sidebar-width)*-1)]\"\n },\n \"variants\": {\n \"floatingOrInset\": \"p-2 group-data-[collapsible=icon]:w-[calc(var(--sidebar-width-icon)_+_theme(spacing.4)_+2px)]\",\n \"default\": \"group-data-[collapsible=icon]:w-[--sidebar-width-icon] group-data-[side=left]:border-r group-data-[side=right]:border-l\"\n },\n \"inner\": \"flex h-full w-full flex-col text-sidebar-foreground bg-background group-data-[variant=floating]:rounded-lg group-data-[variant=floating]:border group-data-[variant=floating]:border-border group-data-[variant=floating]:shadow\"\n },\n \"foreground\": \"text-sidebar-foreground\"\n },\n \"rail\": \"absolute inset-y-0 z-20 hidden w-4 -translate-x-1/2 transition-all ease-linear after:absolute after:inset-y-0 after:left-1/2 after:w-[2px] hover:after:bg-muted/80 group-data-[side=left]:-right-4 group-data-[side=right]:left-0 sm:flex [[data-side=left]_&]:cursor-w-resize [[data-side=right]_&]:cursor-e-resize [[data-side=left][data-state=collapsed]_&]:cursor-e-resize [[data-side=right][data-state=collapsed]_&]:cursor-w-resize group-data-[collapsible=offcanvas]:translate-x-0 group-data-[collapsible=offcanvas]:after:left-full group-data-[collapsible=offcanvas]:hover:bg-sidebar [[data-side=left][data-collapsible=offcanvas]_&]:-right-2 [[data-side=right][data-collapsible=offcanvas]_&]:-left-2\",\n \"trigger\": \"p-1 flex items-center border-border justify-center bg-card [&>svg]:text-foreground [&>svg]:size-4 [&>svg]:shrink-0\",\n \"separator\": \"mx-2 w-auto bg-muted\",\n \"content\": \"flex min-h-0 flex-1 flex-col gap-3 overflow-auto group-data-[collapsible=icon]:overflow-hidden px-2 py-3\",\n \"header\": \"flex flex-col gap-2 pt-6 px-6 pb-0\",\n \"footer\": \"flex flex-col gap-2 px-4 py-4\",\n \"input\": \"h-8 w-full bg-background shadow-none focus-visible:ring-2 focus-visible:ring-teal-600\",\n \"inset\": \"relative flex min-h-svh flex-1 flex-col bg-background peer-data-[variant=inset]:min-h-[calc(100svh-theme(spacing.4))] lg:peer-data-[variant=inset]:m-2 lg:peer-data-[state=collapsed]:peer-data-[variant=inset]:ml-2 lg:peer-data-[variant=inset]:ml-0 lg:peer-data-[variant=inset]:rounded-xl lg:peer-data-[variant=inset]:shadow min-h-full relative overflow-hidden\",\n \"group\": {\n \"root\": \"relative flex w-full min-w-0 flex-col px-2 py-3\",\n \"label\": \"duration-200 flex h-8 shrink-0 items-center font-primary rounded-md px-4 text-xs font-normal text-muted-foreground outline-none transition-[margin,opa] ease-linear [&>svg]:text-foreground [&>svg]:size-4 [&>svg]:shrink-0 group-data-[collapsible=icon]:-mt-8 group-data-[collapsible=icon]:opacity-0\",\n \"content\": \"w-full text-sm\",\n \"action\": \"absolute right-3 top-3.5 flex aspect-square w-5 items-center justify-center rounded-md p-0 text-sidebar-foreground outline-none ring-teal-600 transition-transform hover:bg-sidebar-accent hover:text-sidebar-accent-foreground focus-visible:ring-2 [&>svg]:size-4 [&>svg]:shrink-0 after:absolute after:-inset-2 after:lg:hidden group-data-[collapsible=icon]:hidden\"\n },\n \"menu\": {\n \"root\": \"flex w-full min-w-0 flex-col gap-2 py-2 px-2\",\n \"item\": \"group/menu-item relative rounded-md font-primary font-medium\",\n \"badge\": \"absolute right-1 flex h-5 min-w-5 items-center justify-center rounded-md px-1 text-xs font-medium tabular-nums text-sidebar-foreground select-none pointer-events-none peer-hover/menu-button:text-sidebar-accent-foreground peer-data-[active=true]/menu-button:text-sidebar-accent-foreground peer-data-[size=sm]/menu-button:top-1 peer-data-[size=default]/menu-button:top-1.5 peer-data-[size=lg]/menu-button:top-2.5 group-data-[collapsible=icon]:hidden\",\n \"action\": \"absolute right-1 top-1.5 flex aspect-square w-5 items-center justify-center rounded-md p-0 text-sidebar-foreground outline-none ring-teal-600 transition-transform hover:bg-sidebar-accent hover:text-sidebar-accent-foreground focus-visible:ring-2 peer-hover/menu-button:text-sidebar-accent-foreground after:absolute after:-inset-2 after:lg:hidden peer-data-[size=sm]/menu-button:top-1 peer-data-[size=default]/menu-button:top-1.5 peer-data-[size=lg]/menu-button:top-2.5 group-data-[collapsible=icon]:hidden\",\n \"actionHover\": \"group-focus-within/menu-item:opacity-100 group-hover/menu-item:opacity-100 data-[state=open]:opacity-100 peer-data-[active=true]/menu-button:text-sidebar-accent-foreground lg:opacity-0\",\n \"skeleton\": {\n \"root\": \"rounded-md h-8 flex gap-2 px-2 items-center\",\n \"icon\": \"size-4 rounded-md\",\n \"text\": \"h-4 flex-1 max-w-[--skeleton-width]\"\n },\n \"button\": {\n \"root\": \"peer/menu-button flex w-full items-center gap-2 overflow-hidden rounded-md py-2 px-3 text-left text-sm outline-none transition-[width,height,padding] focus-visible:ring-2 active:bg-sidebar-accent active:text-sidebar-accent-foreground disabled:pointer-events-none disabled:opacity-50 group-has-[[data-sidebar=menu-action]]/menu-item:pr-8 aria-disabled:pointer-events-none aria-disabled:opacity-50 data-[active=true]:bg-sidebar-accent data-[active=true]:font-medium data-[active=true]:text-sidebar-accent-foreground data-[state=open]:hover:bg-sidebar-accent data-[state=open]: group-data-[collapsible=icon]:!size-8 group-data-[collapsible=icon]:!p-2 [&>span:last-child]:truncate [&>svg]:size-4 [&>svg]:shrink-0 font-medium\",\n \"variant\": {\n \"default\": \"items-center gap-2 overflow-hidden rounded-md font-primary font-medium px-2 py-1.5 text-muted-foreground aria-disabled:bg-transparent hover:text-foreground hover:bg-muted/80 aria-expanded:bg-background aria-expanded:text-foreground [&>svg]:aria-expanded:text-foreground aria-disabled:[&>svg]:opacity-50 aria-disabled:opacity-50 [&>svg]:hover:text-foreground [&>svg]:text-muted-foreground data-[active=true]:bg-background [&>svg]:data-[active=true]:text-foreground data-[active=true]:text-foreground\",\n \"outline\": \"bg-background shadow-[0_0_0_1px_hsl(var(--sidebar-border))] hover:bg-sidebar-accent hover:text-sidebar-accent-foreground hover:shadow-[0_0_0_1px_hsl(var(--sidebar-accent))]\"\n },\n \"size\": {\n \"default\": \"h-11 text-base\",\n \"sm\": \"h-7 text-xs\",\n \"lg\": \"h-12 text-sm p-0\"\n },\n \"defaultVariants\": {\n \"variant\": \"default\",\n \"size\": \"default\"\n }\n },\n \"sub\": {\n \"list\": \"mx-3.5 flex min-w-0 translate-x-px flex-col gap-1 px-2.5 py-0.5 group-data-[collapsible=icon]:hidden\",\n \"button\": \"flex h-7 min-w-0 -translate-x-px items-center gap-2 overflow-hidden rounded-md font-primary font-medium px-3 py-2 text-muted-foreground aria-disabled:bg-transparent hover:text-foreground hover:bg-muted/80 focus-visible:ring-2 active:bg-background active:text-foreground active:[&>svg]:text-foreground aria-disabled:[&>svg]:opacity-50 aria-disabled:opacity-50 [&>svg]:hover:text-foreground [&>svg]:text-muted-foreground data-[active=true]:bg-background data-[active=true]:text-foreground group-data-[collapsible=icon]:hidden\",\n \"buttonSize\": {\n \"sm\": \"text-xs\",\n \"default\": \"text-base\",\n \"md\": \"text-sm\"\n }\n }\n },\n \"srOnly\": \"sr-only\"\n },\n \"skeleton\": {\n \"root\": \"animate-pulse rounded-md bg-accent\"\n },\n \"spinner\": {\n \"root\": \"animate-spin\",\n \"track\": \"opacity-20\"\n },\n \"switch\": {\n \"root\": \"peer inline-flex h-[1.15rem] w-8 shrink-0 cursor-pointer items-center rounded-full border border-transparent shadow-xs transition-all focus-visible:outline-none focus-visible:ring-[3px] focus-visible:ring-ring/50 disabled:cursor-not-allowed disabled:opacity-50 data-[state=checked]:bg-primary data-[state=unchecked]:bg-input\",\n \"trigger\": \"pointer-events-none block size-4 rounded-full bg-background shadow ring-0 transition-transform data-[state=checked]:translate-x-[calc(100%-2px)] data-[state=unchecked]:translate-x-0\"\n },\n \"table\": {\n \"root\": \"w-full overflow-clip caption-bottom text-sm bg-background rounded-md font-primary text-foreground\",\n \"header\": \"[&_tr]:border-b h-12 bg-background border-border w-full\",\n \"body\": \"[&_tr:last-child]:border-0\",\n \"footer\": \"border-t bg-background font-medium [&>tr]:last:border-b-0\",\n \"row\": \"items-center border-b [&>*:first-child]:pl-4 [&>*:last-child]:pr-4 border-border group transition-colors bg-background data-[state=selected]:bg-muted/80\",\n \"head\": \"px-2 py-[10px] bg-transparent text-left align-middle font-medium text-muted-foreground text-xs\",\n \"cell\": \"truncate px-2 h-12 align-middle [&:has([role=checkbox])]:pr-0 font-medium text-foreground text-sm\",\n \"caption\": \"mt-4 text-sm text-muted-foreground\",\n \"container\": \"w-full\",\n \"empty\": \"flex items-center justify-center py-10\"\n },\n \"tabs\": {\n \"list\": {\n \"root\": \"inline-flex h-9 w-fit gap-1 items-center justify-center rounded-lg p-[3px] font-primary bg-muted text-muted-foreground\",\n \"line\": \"bg-transparent p-0 rounded-none border-border border-none border-b gap-0 h-auto relative\",\n \"indicator\": \"absolute bottom-0 h-[1px] z-10 bg-primary transition-all duration-300 disabled:opacity-50\",\n \"solidActive\": \"absolute transition-all duration-300 disabled:opacity-50 h-8 rounded-md bottom-auto bg-primary left-0 shadow\",\n \"solidRoot\": \"relative\"\n },\n \"trigger\": {\n \"root\": \"gap-1 font-sm leading-snug font-medium inline-flex items-center justify-center whitespace-nowrap bg-transparent transition-all disabled:cursor-not-allowed disabled:opacity-50 disabled:opacity-50\",\n \"solid\": \"font-primary text-sm font-semibold [&>svg]:text-muted-foreground rounded-md px-3 py-1.5 text-muted-foreground data-[state=active]:text-primary-foreground data-[state=active]:[&>svg]:text-primary-foreground z-0\",\n \"line\": \"text-muted-foreground text-base font-semibold px-4 py-2 rounded-none bg-transparent z-0 data-[state=active]:text-primary/90 data-[state=active]:[&>svg]:text-primary/90 [&>svg]:text-muted-foreground border-border border-b font-semibold\"\n },\n \"content\": \"font-primary mt-2 ring-offset-background focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2\"\n },\n \"textarea\": {\n \"root\": \"flex field-sizing-content min-h-16 w-full font-primary rounded-md border border-border bg-transparent px-3 py-2 text-base md:text-sm shadow-xs transition-[color,box-shadow] outline-none placeholder:text-muted-foreground text-foreground focus-visible:border-ring focus-visible:ring-[3px] focus-visible:ring-ring/50 disabled:cursor-not-allowed disabled:opacity-50\",\n \"noResize\": \"resize-none\"\n },\n \"toast\": {\n \"variant\": {\n \"root\": \"flex w-full font-primary p-4 items-center gap-2 rounded-md border shadow-lg group\",\n \"neutral\": \"bg-muted border-transparent\",\n \"destructive\": \"bg-destructive border-transparent\",\n \"warning\": \"bg-primary border-border\",\n \"success\": \"bg-primary border-border\",\n \"info\": \"bg-primary border-border\"\n },\n \"description\": {\n \"variant\": {\n \"root\": \"leading-4 text-xs font-normal\",\n \"neutral\": \"!text-muted-foreground flex\",\n \"destructive\": \"!text-destructive-foreground\",\n \"warning\": \"!text-muted-foreground\",\n \"success\": \"!text-muted-foreground\",\n \"info\": \"!text-muted-foreground\"\n }\n },\n \"title\": {\n \"variant\": {\n \"root\": \"text-sm leading-4 font-medium\",\n \"neutral\": \"text-foreground\",\n \"destructive\": \"text-destructive-foreground\",\n \"warning\": \"text-primary-foreground\",\n \"success\": \"text-primary-foreground\",\n \"info\": \"text-primary-foreground\"\n }\n },\n \"icon\": {\n \"variant\": {\n \"neutral\": \"text-foreground\",\n \"destructive\": \"text-destructive-foreground\",\n \"warning\": \"text-primary-foreground\",\n \"success\": \"text-primary-foreground\",\n \"info\": \"text-primary-foreground\"\n }\n },\n \"root\": \"lg:max-w-md justify-end flex\",\n \"content\": \"flex gap-1 items-start flex-col flex-1\",\n \"toaster\": \"toaster group\"\n },\n \"tooltip\": {\n \"content\": \"z-30 w-fit overflow-hidden rounded-md font-normal font-primary bg-foreground px-3 py-1.5 text-xs text-balance text-background animate-in fade-in-0 zoom-in-95 data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=closed]:zoom-out-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2\"\n },\n \"alertdialog\": {\n \"overlay\": \"fixed inset-0 z-50 bg-black/80 data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0\",\n \"content\": \"font-primary border border-border fixed left-[50%] top-[50%] z-50 max-w-[90vw] grid w-full lg:max-w-lg translate-x-[-50%] translate-y-[-50%] gap-6 border border-border bg-background p-6 shadow-lg duration-200 data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[state=closed]:slide-out-to-left-1/2 data-[state=closed]:slide-out-to-top-[48%] data-[state=open]:slide-in-from-left-1/2 data-[state=open]:slide-in-from-top-[48%] rounded-lg shadow-2xl\",\n \"header\": \"flex flex-col space-y-2 gap-0.5 text-left\",\n \"footer\": \"flex flex-row justify-end gap-4\",\n \"title\": \"text-lg font-semibold text-foreground\",\n \"description\": \"text-sm text-muted-foreground font-medium\",\n \"cancel\": \"sm:mt-0\"\n },\n \"checkboxfield\": {\n \"root\": \"flex items-center gap-2 font-primary w-fit\",\n \"disabled\": \"opacity-5\"\n },\n \"datepicker\": {\n \"root\": \"w-[280px] justify-start text-left font-normal gap-y-0 [&>span]:truncate font-primary\",\n \"button\": \"inline-flex items-center justify-center whitespace-nowrap rounded-md text-sm font-normal ring-offset-background transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:pointer-events-none disabled:opacity-50 text-sm font-medium tracking-0 pl-4 pr-4 h-10 bg-muted hover:bg-accent/80 active:bg-accent/80 disabled:opacity-50 border-border hover:border-border active:border-border disabled:opacity-50 border border-t border-b border-r border-l\",\n \"isSelected\": {\n \"true\": \"pointer-events-none\",\n \"false\": \"w-full justify-start\"\n },\n \"trigger\": {\n \"popover\": \"w-fit justify-start font-normal text-sm leading-none\",\n \"text\": \"truncate text-default-mid\",\n \"select\": \"w-full mx-auto mb-2\"\n },\n \"popover\": {\n \"content\": {\n \"root\": \"flex p-0 items-start gap-6 w-auto flex-col h-[563px] bg-popover z-50\",\n \"relaxed\": \"flex p-0 items-start gap-6 w-auto flex-col lg:flex-row h-[522px] lg:h-auto bg-popover z-50\",\n \"range\": \"w-auto p-0 z-50\"\n }\n },\n \"presets\": {\n \"relaxed\": \"flex flex-col items-sart gap-2 w-[150px]\"\n },\n \"separator\": {\n \"root\": \"hidden\",\n \"relaxed\": \"h-[397px] shrink-0 hidden lg:flex\"\n },\n \"dateInput\": {\n \"relaxed\": \"lg:flex-row\",\n \"root\": \"flex justify-between gap-6 w-full flex-col\",\n \"wrapper\": \"flex gap-2 w-full\",\n \"control\": \"w-full justify-center\",\n \"separator\": \"py-1\"\n },\n \"calendar\": {\n \"container\": {\n \"wrapper\": \"h-[457px]\",\n \"root\": \"flex flex-col gap-2 items-start justify-between\",\n \"relaxed\": \"lg:w-[544px] h-[397px]\"\n }\n },\n \"buttons\": {\n \"root\": \"flex-1\",\n \"relaxed\": \"lg:flex-initial\",\n \"trigger\": \"w-fit justify-start\",\n \"container\": {\n \"root\": \"flex gap-2\",\n \"relaxed\": \"lg:pr-4\"\n }\n },\n \"selectContent\": \"z-50\",\n \"fullWidth\": \"w-full\"\n },\n \"dateinput\": {\n \"arrowUp\": \"ArrowUp\",\n \"arrowDown\": \"ArrowDown\",\n \"arrowLeft\": \"ArrowLeft\",\n \"arrowRight\": \"ArrowRight\",\n \"delete\": \"Delete\",\n \"tab\": \"Tab\",\n \"backspace\": \"Backspace\",\n \"enter\": \"Enter\",\n \"root\": \"flex border rounded-lg items-center text-sm px-1 font-medium leading-5 font-primary text-default-subtle h-10 border-border shadow-sm\",\n \"inputs\": {\n \"month\": \"p-0 outline-none w-6 border-none text-center bg-background\",\n \"day\": \"p-0 outline-none w-7 border-none text-center bg-background\",\n \"year\": \"p-0 outline-none w-12 border-none text-center bg-background\"\n },\n \"span\": \"opacity-20 -mx-px\"\n },\n \"dropdownmenu\": {\n \"subTrigger\": {\n \"root\": \"flex cursor-base select-none items-center rounded-sm px-2 py-1.5 text-sm outline-none text-foreground data-[highlighted]:bg-accent/80 data-[highlighted]:border-transparent data-[highlighted]:text-foreground\",\n \"icon\": \"ml-auto\"\n },\n \"subContent\": \"font-primary z-30 min-w-[8rem] overflow-hidden rounded-md border bg-popover p-1 text-popover-foreground shadow-lg data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2\",\n \"content\": \"font-primary z-30 min-w-[8rem] gap-y-1 overflow-hidden border-border rounded-md border bg-popover p-1 text-popover-foreground shadow-md data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2\",\n \"item\": \"group relative leading-snug font-normal border-0 border-transparent gap-x-2 hover:bg-muted/80 hover:border-transparent data-[disabled]:bg-transparent data-[disabled]:border-transparent text-foreground hover:text-foreground data-[disabled]:opacity-50 flex cursor-base select-none bg-transparent items-center rounded-sm px-2 py-1.5 text-sm outline-none transition-colors focus:bg-accent focus:text-accent-foreground data-[disabled]:pointer-events-none data-[disabled]:opacity-50 data-[highlighted]:bg-muted/80 data-[highlighted]:border-transparent data-[highlighted]:text-foreground\",\n \"destructive\": {\n \"item\": \"group relative leading-snug font-normal border-0 border-transparent gap-x-2 hover:bg-muted/80 hover:border-transparent data-[disabled]:bg-transparent data-[disabled]:border-transparent text-destructive hover:text-destructive data-[disabled]:text-destructive flex cursor-base select-none bg-transparent items-center rounded-sm px-2 py-1.5 text-sm outline-none transition-colors focus:bg-accent data-[disabled]:pointer-events-none data-[disabled]:opacity-50 data-[highlighted]:bg-muted/80 data-[highlighted]:border-transparent data-[highlighted]:text-destructive\",\n \"shortcut\": \"ml-auto tracking-widest text-destructive\"\n },\n \"checkbox\": {\n \"item\": \"group relative leading-snug font-normal border-0 border-transparent gap-x-2 hover:bg-accent/80 hover:border-transparent data-[disabled]:bg-transparent data-[disabled]:border-transparent text-foreground hover:text-foreground data-[disabled]:opacity-50 flex cursor-base select-none bg-transparent items-center rounded-sm px-2 py-1.5 text-sm outline-none transition-colors focus:bg-accent focus:text-accent-foreground data-[disabled]:pointer-events-none data-[disabled]:opacity-50 data-[highlighted]:bg-accent/80 data-[highlighted]:border-transparent data-[highlighted]:text-foreground\",\n \"icon\": \"h-4 w-4 shrink-0 justify-center\"\n },\n \"radio\": {\n \"item\": \"relative flex cursor-base select-none items-center rounded-sm py-1.5 pl-8 pr-2 text-sm outline-none transition-colors data-[disabled]:pointer-events-none data-[disabled]:opacity-50 text-foreground data-[highlighted]:bg-accent/80 data-[highlighted]:border-transparent data-[highlighted]:text-foreground\",\n \"icon\": \"absolute left-2 flex h-3.5 w-3.5 items-center justify-center\",\n \"indicator\": \"fill-current\"\n },\n \"label\": \"bg-transparent border-transparent text-foreground px-2 py-1.5 rounded-sm text-sm leading-snug font-semibold\",\n \"separator\": \"-mx-1 my-1 bg-muted h-px\",\n \"inset\": \"pl-8\",\n \"trigger\": \"outline-none\",\n \"shortcut\": \"ml-auto tracking-widest text-muted-foreground group-hover:text-muted-foreground disabled:opacity-50\"\n },\n \"multiselect\": {\n \"trigger\": \"flex w-full items-center bg-background h-auto min-h-10 max-h-auto p-3 px-4 justify-between [&_svg]:pointer-events-auto rounded-md font-normal\",\n \"selected\": \"flex justify-between items-center w-full\",\n \"wrapper\": \"flex flex-wrap items-center gap-2\",\n \"optionIcon\": \"mr-2\",\n \"controls\": \"flex items-center justify-between gap-2\",\n \"separator\": \"flex min-h-6 h-full\",\n \"noValue\": \"flex items-center justify-between w-full mx-auto\",\n \"placeholder\": \"text-sm text-muted-foreground mx-3\",\n \"item\": \"cursor-pointer justify-normal gap-1\",\n \"noClearable\": \"ml-2\",\n \"createNew\": \"flex flex-col gap-2 items-center\",\n \"createNewButton\": \"w-fit\",\n \"error\": \"px-3 py-1.5 text-destructive text-xs\",\n \"empty\": \"px-2 py-1.5 text-xs text-muted-foreground\"\n },\n \"pdfviewer\": {\n \"root\": \"w-full h-full font-primary\",\n \"worker\": {\n \"root\": \"rpv-core__viewer flex h-full relative border\",\n \"wrapper\": \"w-full h-full\"\n },\n \"toolbar\": {\n \"root\": \"items-center rounded-sm bottom-6 flex left-1/2 p-1 absolute z-[1] bg-muted translate-x-[-50%]\",\n \"icon\": {\n \"root\": \"px-0 py-0.5\",\n \"center\": \"px-0 py-0.5 ml-auto\"\n }\n },\n \"input\": \"w-[40px] mr-2\",\n \"viewer\": \"flex-1 overflow-hidden\"\n },\n \"radiogroupfield\": {\n \"root\": \"flex gap-2 font-primary self-stretch p-px\",\n \"disabled\": \"opacity-50\"\n },\n \"inputotp\": {\n \"root\": \"flex items-center gap-x-2 has-[:disabled]:opacity-50 font-primary\",\n \"group\": \"flex items-center\",\n \"input\": \"disabled:cursor-not-allowed\",\n \"slot\": {\n \"root\": \"p-3 font-medium relative flex h-10 w-10 bg-background text-muted-foreground items-center justify-center border-y border-r border-border text-sm transition-all first:rounded-l-md first:border-l last:rounded-r-md text-center shadow-sm\",\n \"active\": \"z-10 ring-2\"\n },\n \"fakeCaret\": {\n \"wrapper\": \"pointer-events-none absolute inset-0 flex items-center justify-center\",\n \"root\": \"h-4 w-px animate-caret-blink bg-foreground duration-1000\"\n }\n },\n \"phoneinput\": {\n \"root\": \"font-primary focus:placeholder:text-muted-foreground w-full text-foreground file:disabled:placeholder:opacity-50 gap-x-2 file:disabled:opacity-50 file:disabled:opacity-50 file:disabled:opacity-50 leading-relaxed font-medium font-primary text-sm disabled:opacity-100 h-10 file:h-full gap-x-2 px-3 py-2 bg-background border-border placeholder:text-muted-foreground rounded-md focus:ring border focus:ring-blue-600 focus:ring-2 focus:ring-offset-1 focus:bg-muted focus-visible:outline-none focus:border-border focus:text-foreground disabled:opacity-50 disabled:border-border file:border-0 disabled:placeholder:opacity-50 disabled:opacity-50 disabled:opacity-50 file:bg-transparent file:border-border file:placeholder:text-muted-foreground file:text-foreground disabled:cursor-not-allowed [&::-webkit-search-cancel-button]:hidden [&::-webkit-search-decoration]:hidden shadow-sm\",\n \"file\": \"text-muted-foreground\",\n \"container\": \"relative w-full text-foreground\",\n \"prefixIcon\": {\n \"root\": \"absolute left-3 top-1/2 transform -translate-y-1/2 disabled:opacity-100 disabled:cursor-not-allowed\",\n \"props\": {\n \"size\": \"4\"\n }\n },\n \"prefix\": \"absolute left-3 top-1/2 transform -translate-y-1/2 font-medium text-sm font-primary disabled:opacity-100 disabled:opacity-50 disabled:opacity-50 disabled:cursor-not-allowed\",\n \"prefixSlot\": \"absolute left-3 top-1/2 transform -translate-y-1/2 disabled:opacity-100 disabled:opacity-50 disabled:opacity-50 disabled:cursor-not-allowed\",\n \"suffixIcon\": {\n \"root\": \"absolute right-3 top-1/2 transform -translate-y-1/2 disabled:opacity-100 disabled:cursor-not-allowed\",\n \"props\": {\n \"size\": \"4\"\n }\n },\n \"suffix\": \"absolute right-3 top-1/2 transform -translate-y-1/2 font-medium text-sm font-primary disabled:opacity-100 disabled:opacity-50 disabled:opacity-50 disabled:cursor-not-allowed\",\n \"suffixSlot\": \"absolute right-3 top-1/2 transform -translate-y-1/2 disabled:opacity-100 disabled:opacity-50 disabled:opacity-50 disabled:cursor-not-allowed\",\n \"clearable\": {\n \"root\": \"absolute right-3 top-1/2 transform -translate-y-1/2 disabled:opacity-100 disabled:cursor-not-allowed cursor-pointer w-5 h-5 text-primary hover:text-primary/90 active:text-primary/90 p-0 hover:bg-transparent active:bg-transparent\",\n \"props\": {\n \"size\": \"default\"\n }\n },\n \"passwordIcon\": \"absolute right-3 cursor-pointer top-1/2 transform -translate-y-1/2 font-medium text-sm font-primary disabled:opacity-100 disabled:opacity-50 disabled:opacity-50 disabled:cursor-not-allowed\",\n \"clearableIconSuffix\": \"right-12\",\n \"wrapper\": \"flex gap-4\",\n \"selectorWrapper\": \"flex items-center\",\n \"nativeSelect\": \"base-select\",\n \"trigger\": {\n \"layout\": \"flex items-center\"\n },\n \"dialCode\": \"ml-2\",\n \"triggerIcon\": \"ml-2 h-4 w-4\",\n \"flagIcon\": \"-mr-2 h-5 w-5\",\n \"content\": \"w-[300px] p-0\",\n \"item\": \"gap-2\",\n \"itemLabel\": \"flex-1 text-sm\",\n \"input\": \"w-full\",\n \"flag\": \"bg-muted flex h-4 w-6 overflow-hidden rounded-sm\"\n },\n \"inputNumber\": {\n \"root\": \"font-primary focus:placeholder:text-muted-foreground w-full text-foreground file:disabled:placeholder:opacity-50 gap-x-2 file:disabled:opacity-50 file:disabled:opacity-50 file:disabled:opacity-50 leading-relaxed font-medium font-primary text-sm disabled:opacity-100 h-10 file:h-full gap-x-2 px-3 py-2 bg-background border-border placeholder:text-muted-foreground rounded-md focus:ring border focus:ring-blue-600 focus:ring-2 focus:ring-offset-1 focus:bg-muted focus-visible:outline-none focus:border-border focus:text-foreground disabled:opacity-50 disabled:border-border file:border-0 disabled:placeholder:opacity-50 disabled:opacity-50 disabled:opacity-50 file:bg-transparent file:border-border file:placeholder:text-muted-foreground file:text-foreground disabled:cursor-not-allowed [&::-webkit-search-cancel-button]:hidden [&::-webkit-search-decoration]:hidden shadow-sm\",\n \"file\": \"text-muted-foreground\",\n \"container\": \"relative w-full text-foreground\",\n \"prefixIcon\": {\n \"root\": \"absolute left-3 top-1/2 transform -translate-y-1/2 disabled:opacity-100 disabled:cursor-not-allowed\",\n \"props\": {\n \"size\": \"4\"\n }\n },\n \"prefix\": \"absolute left-3 top-1/2 transform -translate-y-1/2 font-medium text-sm font-primary disabled:opacity-100 disabled:opacity-50 disabled:opacity-50 disabled:cursor-not-allowed\",\n \"prefixSlot\": \"absolute left-3 top-1/2 transform -translate-y-1/2 disabled:opacity-100 disabled:opacity-50 disabled:opacity-50 disabled:cursor-not-allowed\",\n \"suffixIcon\": {\n \"root\": \"absolute right-3 top-1/2 transform -translate-y-1/2 disabled:opacity-100 disabled:cursor-not-allowed\",\n \"props\": {\n \"size\": \"4\"\n }\n },\n \"suffix\": \"absolute right-3 top-1/2 transform -translate-y-1/2 font-medium text-sm font-primary disabled:opacity-100 disabled:opacity-50 disabled:opacity-50 disabled:cursor-not-allowed\",\n \"suffixSlot\": \"absolute right-3 top-1/2 transform -translate-y-1/2 disabled:opacity-100 disabled:opacity-50 disabled:opacity-50 disabled:cursor-not-allowed\",\n \"clearable\": {\n \"root\": \"absolute right-3 top-1/2 transform -translate-y-1/2 disabled:opacity-100 disabled:cursor-not-allowed cursor-pointer w-5 h-5 text-primary hover:text-primary/90 active:text-primary/90 p-0 hover:bg-transparent active:bg-transparent\",\n \"props\": {\n \"size\": \"default\"\n }\n },\n \"passwordIcon\": \"absolute right-3 cursor-pointer top-1/2 transform -translate-y-1/2 font-medium text-sm font-primary disabled:opacity-100 disabled:opacity-50 disabled:opacity-50 disabled:cursor-not-allowed\",\n \"clearableIconSuffix\": \"right-12\",\n \"textCenter\": \"text-center\"\n },\n \"inputnumber\": {\n \"root\": \"font-primary focus:placeholder:text-muted-foreground w-full text-foreground file:disabled:placeholder:opacity-50 gap-x-2 file:disabled:opacity-50 file:disabled:opacity-50 file:disabled:opacity-50 leading-relaxed font-medium font-primary text-sm disabled:opacity-100 h-10 file:h-full gap-x-2 px-3 py-2 bg-background border-border placeholder:text-muted-foreground rounded-md focus:ring border focus:ring-blue-600 focus:ring-2 focus:ring-offset-1 focus:bg-muted focus-visible:outline-none focus:border-border focus:text-foreground disabled:opacity-50 disabled:border-border file:border-0 disabled:placeholder:opacity-50 disabled:opacity-50 disabled:opacity-50 file:bg-transparent file:border-border file:placeholder:text-muted-foreground file:text-foreground disabled:cursor-not-allowed [&::-webkit-search-cancel-button]:hidden [&::-webkit-search-decoration]:hidden shadow-sm\",\n \"file\": \"text-muted-foreground\",\n \"container\": \"relative w-full text-foreground\",\n \"prefixIcon\": {\n \"root\": \"absolute left-3 top-1/2 transform -translate-y-1/2 disabled:opacity-100 disabled:cursor-not-allowed\",\n \"props\": {\n \"size\": \"4\"\n }\n },\n \"prefix\": \"absolute left-3 top-1/2 transform -translate-y-1/2 font-medium text-sm font-primary disabled:opacity-100 disabled:opacity-50 disabled:opacity-50 disabled:cursor-not-allowed\",\n \"prefixSlot\": \"absolute left-3 top-1/2 transform -translate-y-1/2 disabled:opacity-100 disabled:opacity-50 disabled:opacity-50 disabled:cursor-not-allowed\",\n \"suffixIcon\": {\n \"root\": \"absolute right-3 top-1/2 transform -translate-y-1/2 disabled:opacity-100 disabled:cursor-not-allowed\",\n \"props\": {\n \"size\": \"4\"\n }\n },\n \"suffix\": \"absolute right-3 top-1/2 transform -translate-y-1/2 font-medium text-sm font-primary disabled:opacity-100 disabled:opacity-50 disabled:opacity-50 disabled:cursor-not-allowed\",\n \"suffixSlot\": \"absolute right-3 top-1/2 transform -translate-y-1/2 disabled:opacity-100 disabled:opacity-50 disabled:opacity-50 disabled:cursor-not-allowed\",\n \"clearable\": {\n \"root\": \"absolute right-3 top-1/2 transform -translate-y-1/2 disabled:opacity-100 disabled:cursor-not-allowed cursor-pointer w-5 h-5 text-primary hover:text-primary/90 active:text-primary/90 p-0 hover:bg-transparent active:bg-transparent\",\n \"props\": {\n \"size\": \"default\"\n }\n },\n \"passwordIcon\": \"absolute right-3 cursor-pointer top-1/2 transform -translate-y-1/2 font-medium text-sm font-primary disabled:opacity-100 disabled:opacity-50 disabled:opacity-50 disabled:cursor-not-allowed\",\n \"clearableIconSuffix\": \"right-12\",\n \"textCenter\": \"text-center\"\n },\n \"dateSlider\": {\n \"root\": \"p-3 rounded-md font-primary\",\n \"caption\": {\n \"root\": \"flex justify-center pt-1 relative items-center\",\n \"label\": \"text-sm text-foreground leading-snug font-medium\"\n },\n \"months\": \"flex flex-col sm:flex-row space-y-4 sm:space-x-4 sm:space-y-0\",\n \"month\": \"space-y-4\",\n \"nav\": {\n \"root\": \"space-x-1 flex items-center\",\n \"button\": {\n \"root\": \"h-7 w-7 bg-transparent p-0 opacity-50 hover:opacity-100\",\n \"previous\": \"absolute left-1\",\n \"next\": \"absolute right-1\"\n }\n },\n \"row\": \"flex w-full mt-2 cursor-not-allowed\",\n \"table\": \"w-full border-collapse space-y-1\",\n \"head\": {\n \"row\": \"flex\",\n \"cell\": \"text-muted-foreground leading-snug w-9 font-normal text-sm\"\n },\n \"cell\": \"text-center text-sm p-0 relative\",\n \"day\": {\n \"root\": \"h-9 w-9 p-0 font-normal text-foreground aria-selected:opacity-100 inline-flex items-center justify-center rounded-md text-sm font-medium transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:opacity-50 disabled:pointer-events-none ring-offset-background hover:bg-muted/80 aria-selected:hover:bg-primary/90\",\n \"range\": {\n \"end\": \"day-range-end\",\n \"middle\": \"aria-selected:bg-muted/80 aria-selected:text-foreground aria-selected:hover:bg-muted/80\"\n },\n \"selected\": \"bg-primary text-primary-foreground hover:bg-primary/90 hover:text-primary-foreground focus:bg-primary focus:text-primary-foreground\",\n \"today\": \"bg-primary text-primary-foreground aria-selected:bg-primary/90 aria-selected:text-primary-foreground aria-selected:hover:bg-primary/90 aria-selected:focus:bg-primary/90\",\n \"outside\": \"opacity-50 opacity-50 aria-selected:text-foreground day-outside aria-selected:bg-muted/80 aria-selected:hover:bg-muted/80 aria-selected:hover:text-foreground aria-selected:focus:bg-muted/80 aria-selected:focus:text-foreground\",\n \"disabled\": \"text-muted-foreground opacity-50\",\n \"hidden\": \"invisible\"\n },\n \"customRootSlider\": \"w-full\",\n \"header\": \"flex justify-center pt-1 relative items-center\",\n \"selectContent\": \"z-50\",\n \"buttons\": {\n \"props\": {\n \"variant\": \"ghost\"\n }\n },\n \"dialog\": {\n \"false\": \"hidden\",\n \"content\": \"grid gap-4\",\n \"body\": \"grid gap-4\",\n \"range\": \"grid gap-4\"\n }\n },\n \"dateslider\": {\n \"root\": \"p-3 rounded-md font-primary\",\n \"caption\": {\n \"root\": \"flex justify-center pt-1 relative items-center\",\n \"label\": \"text-sm text-foreground leading-snug font-medium\"\n },\n \"months\": \"flex flex-col sm:flex-row space-y-4 sm:space-x-4 sm:space-y-0\",\n \"month\": \"space-y-4\",\n \"nav\": {\n \"root\": \"space-x-1 flex items-center\",\n \"button\": {\n \"root\": \"h-7 w-7 bg-transparent p-0 opacity-50 hover:opacity-100\",\n \"previous\": \"absolute left-1\",\n \"next\": \"absolute right-1\"\n }\n },\n \"row\": \"flex w-full mt-2 cursor-not-allowed\",\n \"table\": \"w-full border-collapse space-y-1\",\n \"head\": {\n \"row\": \"flex\",\n \"cell\": \"text-muted-foreground leading-snug w-9 font-normal text-sm\"\n },\n \"cell\": \"text-center text-sm p-0 relative\",\n \"day\": {\n \"root\": \"h-9 w-9 p-0 font-normal text-foreground aria-selected:opacity-100 inline-flex items-center justify-center rounded-md text-sm font-medium transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:opacity-50 disabled:pointer-events-none ring-offset-background hover:bg-muted/80 aria-selected:hover:bg-primary/90\",\n \"range\": {\n \"end\": \"day-range-end\",\n \"middle\": \"aria-selected:bg-muted/80 aria-selected:text-foreground aria-selected:hover:bg-muted/80\"\n },\n \"selected\": \"bg-primary text-primary-foreground hover:bg-primary/90 hover:text-primary-foreground focus:bg-primary focus:text-primary-foreground\",\n \"today\": \"bg-primary text-primary-foreground aria-selected:bg-primary/90 aria-selected:text-primary-foreground aria-selected:hover:bg-primary/90 aria-selected:focus:bg-primary/90\",\n \"outside\": \"opacity-50 opacity-50 aria-selected:text-foreground day-outside aria-selected:bg-muted/80 aria-selected:hover:bg-muted/80 aria-selected:hover:text-foreground aria-selected:focus:bg-muted/80 aria-selected:focus:text-foreground\",\n \"disabled\": \"text-muted-foreground opacity-50\",\n \"hidden\": \"invisible\"\n },\n \"customRootSlider\": \"w-full\",\n \"header\": \"flex justify-center pt-1 relative items-center\",\n \"selectContent\": \"z-50\",\n \"buttons\": {\n \"props\": {\n \"variant\": \"ghost\"\n }\n },\n \"dialog\": {\n \"false\": \"hidden\",\n \"content\": \"grid gap-4\",\n \"body\": \"grid gap-4\",\n \"range\": \"grid gap-4\"\n }\n },\n \"tabBar\": {\n \"root\": \"pb-safe-bottom w-full justify-center border-t border-border z-20 bg-card items-center absolute bottom-0 left-1/2 transform -translate-x-1/2 flex\",\n \"content\": \"gap-3 lg:gap-8 flex flex-row w-full\",\n \"compact\": \"py-4 px-4\",\n \"relaxed\": \"px-6 py-6\",\n \"maxWidth\": \"max-w-2xl\",\n \"align\": {\n \"start\": \"justify-start\",\n \"end\": \"justify-end\",\n \"center\": \"justify-center\",\n \"justify\": \"justify-between\",\n \"stretch\": \"[&>*]:flex-1\"\n }\n },\n \"tabbar\": {\n \"root\": \"pb-safe-bottom w-full justify-center border-t border-border z-20 bg-card items-center absolute bottom-0 left-1/2 transform -translate-x-1/2 flex\",\n \"content\": \"gap-3 lg:gap-8 flex flex-row w-full\",\n \"compact\": \"py-4 px-4\",\n \"relaxed\": \"px-6 py-6\",\n \"maxWidth\": \"max-w-2xl\",\n \"align\": {\n \"start\": \"justify-start\",\n \"end\": \"justify-end\",\n \"center\": \"justify-center\",\n \"justify\": \"justify-between\",\n \"stretch\": \"[&>*]:flex-1\"\n }\n },\n \"avatarGroup\": {\n \"root\": \"flex flex-row relative h-10 w-full font-primary\",\n \"avatar\": \"relative -ml-2 first:ml-0\"\n },\n \"avatargroup\": {\n \"root\": \"flex flex-row relative h-10 w-full font-primary\",\n \"avatar\": \"relative -ml-2 first:ml-0\"\n },\n \"timePicker\": {\n \"trigger\": \"w-full\",\n \"input\": \"w-full\",\n \"wrapper\": \"grid gap-4\",\n \"popover\": {\n \"content\": \"w-auto p-4\"\n },\n \"select\": {\n \"root\": \"grid gap-2\",\n \"label\": \"text-sm font-medium text-foreground\",\n \"container\": \"flex flex-col gap-2\",\n \"content\": \"max-h-48 overflow-y-auto\"\n }\n },\n \"timepicker\": {\n \"trigger\": \"w-full\",\n \"input\": \"w-full\",\n \"wrapper\": \"grid gap-4\",\n \"popover\": {\n \"content\": \"w-auto p-4\"\n },\n \"select\": {\n \"root\": \"grid gap-2\",\n \"label\": \"text-sm font-medium text-foreground\",\n \"container\": \"flex flex-col gap-2\",\n \"content\": \"max-h-48 overflow-y-auto\"\n }\n },\n \"collapsible\": {\n \"root\": \"w-full\",\n \"trigger\": \"inline-flex items-center justify-between gap-2\",\n \"content\": \"overflow-hidden\"\n },\n \"icon\": {\n \"root\": \"shrink-0\"\n },\n \"resizable\": {\n \"root\": \"flex\",\n \"panel\": \"relative\",\n \"handle\": \"bg-border focus-visible:ring-ring relative flex w-px items-center justify-center\"\n },\n \"stepper\": {\n \"root\": \"flex gap-2\",\n \"item\": \"flex items-center gap-2\",\n \"trigger\": \"inline-flex items-center gap-2\",\n \"indicator\": \"flex size-8 items-center justify-center rounded-full border border-border\",\n \"separator\": \"bg-border h-px flex-1\",\n \"title\": \"font-medium text-foreground\",\n \"description\": \"text-muted-foreground text-sm\"\n },\n \"themeprovider\": {\n \"root\": \"contents\",\n \"themePicker\": {\n \"srOnly\": \"sr-only\"\n }\n },\n \"themepicker\": {\n \"root\": \"inline-flex items-center gap-2 rounded-md border border-border bg-background p-1\",\n \"icon\": {\n \"light\": \"h-[1.2rem] w-[1.2rem] scale-100 rotate-0 transition-all dark:scale-0 dark:-rotate-90\",\n \"dark\": \"absolute h-[1.2rem] w-[1.2rem] scale-0 rotate-90 transition-all dark:scale-100 dark:rotate-0\"\n },\n \"srOnly\": \"sr-only\"\n },\n \"toggle\": {\n \"root\": \"inline-flex items-center justify-center rounded-md text-sm font-medium hover:bg-accent hover:text-accent-foreground\",\n \"variant\": {\n \"default\": \"bg-transparent\",\n \"outline\": \"border border-input bg-transparent\"\n },\n \"size\": {\n \"default\": \"h-9 px-3\",\n \"sm\": \"h-8 px-2\",\n \"lg\": \"h-10 px-4\"\n }\n },\n \"fileuploader\": {\n \"cursor\": \"cursor-pointer\",\n \"borderless\": \"border-0\"\n }\n};\n", "const masterDefaultConfig = require('./default-config-data');\n\nconst defaultConfigOverrides = {\n button: {\n root: 'font-sans group inline-flex shrink-0 items-center justify-center gap-2 rounded-md border border-transparent font-medium transition-colors disabled:pointer-events-none disabled:opacity-50',\n variants: {\n variant: {\n main: 'bg-primary text-primary-foreground hover:bg-primary/90',\n default: 'bg-primary text-primary-foreground hover:bg-primary/90',\n destructive: 'bg-destructive text-destructive-foreground hover:bg-destructive/90',\n tertiary: 'border-border bg-background text-foreground hover:bg-accent hover:text-accent-foreground',\n outline: 'border-border bg-background text-foreground hover:bg-accent hover:text-accent-foreground',\n secondary: 'bg-secondary text-secondary-foreground hover:bg-secondary/80',\n ghost: 'bg-transparent text-foreground hover:bg-accent hover:text-accent-foreground',\n ghostmain: 'bg-transparent text-primary hover:bg-accent hover:text-accent-foreground',\n link: 'text-primary underline-offset-4 hover:underline',\n linkDestructive: 'text-destructive underline-offset-4 hover:underline',\n linkdestructive: 'text-destructive underline-offset-4 hover:underline',\n },\n size: {\n xs: 'h-8 px-2 text-xs',\n small: 'h-9 px-3 text-sm',\n default: 'h-10 px-4 py-2 text-sm',\n sm: 'h-9 px-3 text-sm',\n icon: 'h-10 w-10 px-0',\n lg: 'h-11 px-8 text-base',\n large: 'h-11 px-8 text-base',\n },\n iconPosition: {\n prefix: {\n sm: 'pl-2',\n default: 'pl-3',\n lg: 'pl-4',\n small: 'pl-2',\n large: 'pl-4',\n },\n suffix: {\n sm: 'pr-2',\n default: 'pr-3',\n lg: 'pr-4',\n small: 'pr-2',\n large: 'pr-4',\n },\n default: {\n sm: 'h-9 w-9 px-0',\n default: 'h-10 w-10 px-0',\n lg: 'h-11 w-11 px-0',\n small: 'h-9 w-9 px-0',\n large: 'h-11 w-11 px-0',\n },\n },\n },\n slots: {\n icon: {\n root: 'gap-2',\n variants: {\n size: {\n xs: '3',\n small: '4',\n sm: '4',\n default: '4',\n lg: '5',\n large: '5',\n icon: '4',\n },\n color: {\n main: 'text-primary-foreground',\n default: 'text-primary-foreground',\n destructive: 'text-destructive-foreground',\n tertiary: 'text-foreground',\n outline: 'text-foreground',\n secondary: 'text-secondary-foreground',\n ghost: 'text-foreground',\n ghostmain: 'text-primary',\n link: 'text-primary',\n linkDestructive: 'text-destructive',\n linkdestructive: 'text-destructive',\n },\n },\n },\n },\n compoundVariants: {\n links: 'h-auto p-0 text-sm font-medium',\n },\n defaultVariants: {\n variant: 'main',\n size: 'default',\n },\n },\n spinner: {\n root: 'animate-spin text-primary',\n },\n};\n\nconst bundledDefaultConfig = deepMerge(masterDefaultConfig, defaultConfigOverrides);\n\nfunction isPlainObject(value) {\n return Boolean(value) && typeof value === 'object' && !Array.isArray(value);\n}\n\nfunction deepMerge(base, override) {\n if (override === undefined) return structuredCloneCompat(base);\n if (!isPlainObject(base) || !isPlainObject(override)) {\n return structuredCloneCompat(override);\n }\n\n const merged = structuredCloneCompat(base);\n for (const [key, value] of Object.entries(override)) {\n merged[key] = deepMerge(base[key], value);\n }\n return merged;\n}\n\nfunction structuredCloneCompat(value) {\n if (value === undefined) return undefined;\n return JSON.parse(JSON.stringify(value));\n}\n\nfunction mergeComponentsConfig(cloudConfig) {\n return deepMerge(bundledDefaultConfig, cloudConfig || {});\n}\n\nmodule.exports = {\n bundledDefaultConfig,\n deepMerge,\n mergeComponentsConfig,\n};\n", "const CacheManager = require('./lib/core/cache-manager');\nconst { mergeComponentsConfig } = require('./lib/core/default-config');\nconst path = require('path');\n\nfunction frontfriend(nextConfig = {}) {\n // Load cache once at config time\n const cacheManager = new CacheManager(process.cwd());\n let cache = null;\n let componentsConfig = mergeComponentsConfig(null);\n let icons = {};\n let hasCache = false;\n\n if (cacheManager.exists()) {\n cache = cacheManager.load();\n if (cache) {\n hasCache = true;\n componentsConfig = mergeComponentsConfig(cache.componentsConfig);\n icons = cache.icons || {};\n }\n } else {\n console.warn('[FrontFriend Next.js] No cache found. Using bundled defaults. Run \"npx frontfriend init\" to fetch cloud config.');\n }\n\n return {\n ...nextConfig,\n // Environment variables work with both webpack and Turbopack\n env: {\n ...nextConfig.env,\n // Inject config as environment variables for Turbopack compatibility\n // Using NEXT_PUBLIC_ prefix as Next.js doesn't allow __ prefixed keys\n NEXT_PUBLIC_FF_CONFIG: JSON.stringify(componentsConfig),\n NEXT_PUBLIC_FF_ICONS: JSON.stringify(icons),\n },\n webpack: (config, options) => {\n // 1. Call existing webpack config if provided\n if (typeof nextConfig.webpack === 'function') {\n config = nextConfig.webpack(config, options);\n }\n\n // 2. Add resolver aliases for Tailwind v4 CSS-first theme import.\n // Consumers can import '@frontfriend/tailwind/theme.css' from their app CSS.\n if (hasCache && typeof cacheManager.getCacheDir === 'function') {\n const themePath = path.join(cacheManager.getCacheDir(), 'theme.css');\n config.resolve = config.resolve || {};\n config.resolve.alias = config.resolve.alias || {};\n config.resolve.alias['@frontfriend/tailwind/theme'] = themePath;\n config.resolve.alias['@frontfriend/tailwind/theme.css'] = themePath;\n }\n\n // 4. Use webpack.DefinePlugin from options (works with both webpack 4 and 5)\n // This is for webpack - Turbopack will use the env vars above\n const { webpack } = options;\n const DefinePlugin = webpack.DefinePlugin;\n\n // 5. Inject __FF_CONFIG__ and __FF_ICONS__ as globals for webpack\n const definitions = {\n __FF_CONFIG__: JSON.stringify(componentsConfig),\n __FF_ICONS__: JSON.stringify(icons)\n };\n\n // Add DefinePlugin to plugins array\n config.plugins = config.plugins || [];\n config.plugins.push(new DefinePlugin(definitions));\n\n // Log success in development\n if (options.dev && !options.isServer) {\n console.log('[FrontFriend Next.js] Injected configuration and icons into client build');\n }\n\n // 6. Return modified config\n return config;\n }\n };\n}\n\nmodule.exports = frontfriend;\n"],
5
- "mappings": "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",
4
+ "sourcesContent": ["/**\n * Configuration constants for FrontFriend Tailwind v2\n */\n\n// API Configuration\nconst DEFAULT_API_URL = 'https://app.frontfriend.dev';\nconst LEGACY_API_URL = 'https://registry-legacy.frontfriend.dev';\n\n// Cache Configuration\nconst CACHE_DIR_NAME = '.cache/frontfriend';\nconst CACHE_TTL_DAYS = 7;\nconst CACHE_TTL_MS = CACHE_TTL_DAYS * 24 * 60 * 60 * 1000;\n\n// File names\nconst CACHE_FILES = {\n JS: [\n 'tokens.js',\n 'variables.js',\n 'semanticVariables.js',\n 'semanticDarkVariables.js',\n 'safelist.js',\n 'custom.js'\n ],\n JSON: [\n 'fonts.json',\n 'icons.json',\n 'components-config.json',\n 'version.json',\n 'metadata.json'\n ]\n};\n\n// Environment variables\nconst ENV_VARS = {\n FF_ID: 'FF_ID',\n FF_API_URL: 'FF_API_URL',\n FF_USE_LOCAL: 'FF_USE_LOCAL',\n FF_AUTH_TOKEN: 'FF_AUTH_TOKEN'\n};\n\nmodule.exports = {\n DEFAULT_API_URL,\n LEGACY_API_URL,\n CACHE_DIR_NAME,\n CACHE_TTL_DAYS,\n CACHE_TTL_MS,\n CACHE_FILES,\n ENV_VARS\n};", "class APIError extends Error {\n constructor(message, statusCode, url) {\n super(message);\n this.name = 'APIError';\n this.statusCode = statusCode;\n this.url = url;\n this.code = `API_${statusCode}`;\n }\n}\n\nclass CacheError extends Error {\n constructor(message, operation) {\n super(message);\n this.name = 'CacheError';\n this.operation = operation;\n this.code = `CACHE_${operation.toUpperCase()}`;\n }\n}\n\nclass ConfigError extends Error {\n constructor(message, field) {\n super(message);\n this.name = 'ConfigError';\n this.field = field;\n // `field` is optional; guard so a missing field never crashes (and masks)\n // the real error with `Cannot read properties of undefined (toUpperCase)`.\n this.code = field ? `CONFIG_${String(field).toUpperCase()}` : 'CONFIG_ERROR';\n }\n}\n\nclass ProcessingError extends Error {\n constructor(message, token) {\n super(message);\n this.name = 'ProcessingError';\n this.token = token;\n this.code = 'PROCESSING_ERROR';\n }\n}\n\nmodule.exports = {\n APIError,\n CacheError,\n ConfigError,\n ProcessingError\n};", "const fs = require('fs');\n\n/**\n * Read a JSON file safely, returning null if file doesn't exist\n * @param {string} filepath - Path to the JSON file\n * @returns {Object|null} Parsed JSON or null if file not found\n * @throws {Error} If JSON is invalid\n */\nfunction readJsonFileSafe(filepath) {\n try {\n const content = fs.readFileSync(filepath, 'utf8');\n return JSON.parse(content);\n } catch (error) {\n if (error.code === 'ENOENT') {\n return null; // File not found, return null like API would return 404\n }\n throw error;\n }\n}\n\n/**\n * Read a file safely, returning null if file doesn't exist\n * Strips UTF-8 BOM if present (fixes Windows compatibility)\n * @param {string} filepath - Path to the file\n * @returns {string|null} File content or null if file not found\n * @throws {Error} For other file system errors\n */\nfunction readFileSafe(filepath) {\n try {\n const content = fs.readFileSync(filepath, 'utf8');\n // Strip UTF-8 BOM if present (Windows compatibility)\n return content.replace(/^\\uFEFF/, '');\n } catch (error) {\n if (error.code === 'ENOENT') {\n return null; // File not found\n }\n throw error;\n }\n}\n\n/**\n * Write JSON data to a file with proper formatting\n * @param {string} filepath - Path to write the file\n * @param {Object} data - Data to write\n * @param {number} indent - Indentation level (default: 2)\n */\nfunction writeJsonFile(filepath, data, indent = 2) {\n const content = JSON.stringify(data, null, indent);\n fs.writeFileSync(filepath, content, 'utf8');\n}\n\n/**\n * Write plain text content to a file\n * @param {string} filepath - Path to write the file\n * @param {string} content - Text content to write\n */\nfunction writeTextFile(filepath, content) {\n fs.writeFileSync(filepath, content, 'utf8');\n}\n\n/**\n * Write module.exports file with JSON data\n * @param {string} filepath - Path to write the file\n * @param {Object} data - Data to export\n */\nfunction writeModuleExportsFile(filepath, data) {\n // Handle empty data cases\n if (data === null || data === undefined || \n (typeof data === 'object' && Object.keys(data).length === 0) ||\n (Array.isArray(data) && data.length === 0)) {\n const emptyContent = Array.isArray(data) ? '[]' : '{}';\n const content = `module.exports = ${emptyContent};`;\n fs.writeFileSync(filepath, content, 'utf8');\n } else {\n const content = `module.exports = ${JSON.stringify(data, null, 2)};`;\n fs.writeFileSync(filepath, content, 'utf8');\n }\n}\n\n/**\n * Check if a file exists\n * @param {string} filepath - Path to check\n * @returns {boolean} True if file exists\n */\nfunction fileExists(filepath) {\n return fs.existsSync(filepath);\n}\n\n/**\n * Create directory recursively\n * @param {string} dirpath - Directory path to create\n */\nfunction ensureDirectoryExists(dirpath) {\n fs.mkdirSync(dirpath, { recursive: true });\n}\n\n/**\n * Remove directory recursively\n * @param {string} dirpath - Directory path to remove\n */\nfunction removeDirectory(dirpath) {\n fs.rmSync(dirpath, { recursive: true, force: true });\n}\n\nmodule.exports = {\n readJsonFileSafe,\n readFileSafe,\n writeJsonFile,\n writeTextFile,\n writeModuleExportsFile,\n fileExists,\n ensureDirectoryExists,\n removeDirectory\n};\n", "const path = require('path');\nconst { CACHE_DIR_NAME, CACHE_TTL_MS, CACHE_FILES } = require('./constants');\nconst { CacheError } = require('./errors');\nconst { readJsonFileSafe, readFileSafe, writeJsonFile, writeTextFile, writeModuleExportsFile, fileExists, ensureDirectoryExists, removeDirectory } = require('./file-utils');\n\nclass CacheManager {\n constructor(appRoot = process.cwd()) {\n this.appRoot = appRoot;\n this.cacheDir = path.join(appRoot, 'node_modules', CACHE_DIR_NAME);\n this.metadataFile = path.join(this.cacheDir, 'metadata.json');\n this.maxAge = CACHE_TTL_MS;\n }\n\n /**\n * Get the cache directory path\n * @returns {string} Cache directory path\n */\n getCacheDir() {\n return this.cacheDir;\n }\n\n /**\n * Check if cache directory exists\n * @returns {boolean} True if cache exists\n */\n exists() {\n return fileExists(this.cacheDir);\n }\n\n /**\n * Check if cache is valid (exists and not expired)\n * @returns {boolean} True if cache is valid\n */\n isValid() {\n if (!this.exists()) {\n return false;\n }\n\n try {\n const metadata = readJsonFileSafe(this.metadataFile);\n if (!metadata) {\n return false;\n }\n\n const timestamp = new Date(metadata.timestamp).getTime();\n const now = Date.now();\n \n return (now - timestamp) < this.maxAge;\n } catch (error) {\n return false;\n }\n }\n\n /**\n * Load all cached data\n * @returns {Object|null} Cached data object or null if not found\n */\n load() {\n if (!this.exists()) {\n return null;\n }\n\n try {\n const data = {};\n \n // Load all .js files\n for (const file of CACHE_FILES.JS) {\n const filePath = path.join(this.cacheDir, file);\n if (fileExists(filePath)) {\n // Remove .js extension for key\n const key = file.replace('.js', '');\n try {\n // Use a more secure approach - parse the exported data\n const content = readFileSafe(filePath);\n if (content !== null) {\n // Create a safe evaluation context\n const moduleExports = {};\n const fakeModule = { exports: moduleExports };\n \n // Use Function constructor to evaluate in isolated scope\n const evalFunc = new Function('module', 'exports', content);\n evalFunc(fakeModule, moduleExports);\n\n data[key] = fakeModule.exports;\n }\n } catch (e) {\n // Log parsing errors to help debug Windows/encoding issues\n console.warn(`[Frontfriend] Failed to load ${file}: ${e.message}`);\n if (e.message.includes('Unexpected token') || e.message.includes('Invalid character')) {\n console.warn('[Frontfriend] This might be a BOM or encoding issue. Try deleting node_modules/.cache/frontfriend and running `npx frontfriend init` again.');\n }\n }\n }\n }\n\n // Load all .json files\n for (const file of CACHE_FILES.JSON) {\n const filePath = path.join(this.cacheDir, file);\n const key = file.replace('.json', '');\n const content = readJsonFileSafe(filePath);\n if (content !== null) {\n data[key] = content;\n }\n }\n\n // Rename components-config to componentsConfig for consistency\n if (data['components-config']) {\n data.componentsConfig = data['components-config'];\n delete data['components-config'];\n }\n\n // Backward compatibility: rename cls to safelist if present\n if (data.cls && !data.safelist) {\n data.safelist = data.cls;\n delete data.cls;\n }\n\n return data;\n } catch (error) {\n throw new CacheError(`Failed to load cache: ${error.message}`, 'read');\n }\n }\n\n /**\n * Save data to cache\n * @param {Object} data - Data object to save\n * @throws {Error} If save operation fails\n */\n save(data) {\n try {\n // Create cache directory\n ensureDirectoryExists(this.cacheDir);\n\n // Save metadata first\n const metadata = {\n timestamp: new Date().toISOString(),\n version: data.metadata?.version || '2.0.0',\n ffId: data.metadata?.ffId\n };\n writeJsonFile(this.metadataFile, metadata);\n\n // Save .js files\n const jsFiles = [\n 'tokens',\n 'variables',\n 'semanticVariables',\n 'semanticDarkVariables',\n 'safelist',\n 'custom'\n ];\n\n for (const key of jsFiles) {\n if (data[key] !== undefined) {\n const filePath = path.join(this.cacheDir, `${key}.js`);\n writeModuleExportsFile(filePath, data[key]);\n }\n }\n \n // Also check for safelist specifically since it might be an array\n if (data.safelist && Array.isArray(data.safelist)) {\n const safelistPath = path.join(this.cacheDir, 'safelist.js');\n writeModuleExportsFile(safelistPath, data.safelist);\n }\n\n // Save .json files\n const jsonData = {\n fonts: data.fonts,\n icons: data.icons || data.iconSet,\n 'components-config': data.componentsConfig,\n version: data.version\n };\n\n for (const [key, value] of Object.entries(jsonData)) {\n if (value !== undefined) {\n const filePath = path.join(this.cacheDir, `${key}.json`);\n writeJsonFile(filePath, value);\n }\n }\n\n // Save Tailwind v4 CSS artifacts when generated by the token processor\n if (data.themeCSS !== undefined) {\n writeTextFile(path.join(this.cacheDir, 'theme.css'), data.themeCSS);\n }\n\n if (data.classesContent !== undefined) {\n writeTextFile(path.join(this.cacheDir, 'classes.css'), data.classesContent);\n }\n } catch (error) {\n throw new CacheError(`Failed to save cache: ${error.message}`, 'write');\n }\n }\n\n /**\n * Clear the cache directory\n */\n clear() {\n if (this.exists()) {\n removeDirectory(this.cacheDir);\n }\n }\n}\n\nmodule.exports = CacheManager;\n", "// Neutral bundled Master Design System fallback for Tailwind v4 registry components.\n// Structure + FrontFriend-only components are derived from\n// packages/frontfriend-tailwind/scripts/master-components-config.json (colors neutralized).\n// shadcn-covered components (button, badge, input) have their root/variant/size classes\n// re-authored from the shadcn new-york-v4 sources so the out-of-the-box fallback renders\n// like a stock shadcn install (token-driven --radius, shadcn size scale + treatments).\n// Run `node packages/frontfriend-tailwind/scripts/update-default-config-data.js` to regenerate.\n// Do not edit this file by hand.\n\nmodule.exports = {\n \"accordion\": {\n \"root\": \"border border-border rounded-md [&>*:last-child]:border-b-0 font-primary\",\n \"slots\": {\n \"font\": \"font-primary text-primary\",\n \"last\": \"[&>*]:border-b-0\",\n \"header\": \"flex\",\n \"item\": \"border-b border-border\",\n \"trigger\": {\n \"root\": \"flex flex-1 items-center text-primary active:text-primary/90 justify-between p-4 font-semibold transition-all [&[data-state=open]>svg]:rotate-180\",\n \"icon\": \"shrink-0 transition-transform duration-200\"\n },\n \"content\": {\n \"root\": \"overflow-hidden text-sm transition-all data-[state=closed]:animate-accordion-up data-[state=open]:animate-accordion-down text-foreground\",\n \"wrapper\": \"p-4 pt-0\"\n }\n }\n },\n \"actionbar\": {\n \"root\": \"pb-safe-bottom w-full justify-center border-t border-border z-20 bg-card items-center absolute bottom-0 left-1/2 transform -translate-x-1/2 flex\",\n \"variant\": {\n \"compact\": \"py-4 px-4\",\n \"relaxed\": \"px-6 py-6\"\n },\n \"slots\": {\n \"content\": \"gap-3 lg:gap-8 flex flex-row w-full\"\n },\n \"props\": {\n \"maxWidth\": \"max-w-2xl\",\n \"align\": {\n \"start\": \"justify-start\",\n \"end\": \"justify-end\",\n \"center\": \"justify-center\",\n \"justify\": \"justify-between\",\n \"stretch\": \"[&>*]:flex-1\"\n }\n }\n },\n \"alert\": {\n \"root\": \"relative w-full rounded-md min-h-12 border gap-2 p-4 [&>svg~*]:pl-7 flex flex-col justify-center [&>svg]:absolute [&>svg]:left-4 [&>svg]:top-4 font-primary shadow-sm\",\n \"variant\": {\n \"default\": \"bg-muted border border-transparent [&>svg]:text-muted-foreground text-foreground [&>div]:text-muted-foreground\",\n \"destructive\": \"bg-destructive border border-transparent [&>svg]:text-destructive-foreground text-destructive-foreground\",\n \"info\": \"bg-primary border border-transparent [&>svg]:text-primary-foreground text-primary-foreground\",\n \"success\": \"bg-primary border border-transparent [&>svg]:text-primary-foreground text-primary-foreground\",\n \"warning\": \"bg-primary border border-transparent [&>svg]:text-primary-foreground text-primary-foreground\",\n \"brand\": \"bg-primary border border-transparent [&>svg]:text-primary-foreground text-primary-foreground\"\n },\n \"slots\": {\n \"title\": \"text-base leading-none tracking-tight font-semibold mb-0\",\n \"description\": \"text-sm [&_p]:leading-relaxed leading-relaxed font-normal\"\n }\n },\n \"alertDialog\": {\n \"slots\": {\n \"overlay\": \"fixed inset-0 z-50 bg-black/80 data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0\",\n \"content\": \"font-primary border border-border fixed left-[50%] top-[50%] z-50 max-w-[90vw] grid w-full lg:max-w-lg translate-x-[-50%] translate-y-[-50%] gap-6 border border-border bg-background p-6 shadow-lg duration-200 data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 rounded-lg shadow-2xl\",\n \"header\": \"flex flex-col space-y-2 gap-0.5 text-left\",\n \"footer\": \"flex flex-row justify-end gap-4\",\n \"title\": \"text-lg font-semibold text-foreground\",\n \"description\": \"text-sm text-muted-foreground font-medium\",\n \"cancel\": \"sm:mt-0\"\n }\n },\n \"avatar\": {\n \"root\": \"font-primary relative flex size-8 shrink-0 overflow-hidden rounded-full\",\n \"slots\": {\n \"image\": \"aspect-square h-full w-full\",\n \"fallback\": \"bg-muted flex size-full items-center justify-center rounded-full text-sm text-muted-foreground\"\n }\n },\n \"badge\": {\n \"root\": \"font-primary inline-flex w-fit shrink-0 items-center justify-center gap-1 overflow-hidden rounded-full border border-transparent px-2 py-0.5 text-xs font-medium whitespace-nowrap transition-[color,box-shadow] focus-visible:border-ring focus-visible:ring-[3px] focus-visible:ring-ring/50 aria-invalid:border-destructive [&>svg]:pointer-events-none [&>svg]:size-3\",\n \"variant\": {\n \"main\": \"bg-primary border-transparent text-primary-foreground [&>svg]:text-primary-foreground\",\n \"secondary\": \"bg-secondary border-transparent text-secondary-foreground [&>svg]:text-secondary-foreground\",\n \"destructive\": \"bg-destructive border-transparent text-white [&>svg]:text-white\",\n \"success\": \"bg-primary border-transparent text-primary-foreground [&>svg]:text-primary-foreground\",\n \"tertiary\": \"bg-transparent border-border text-foreground [&>svg]:text-foreground\",\n \"warning\": \"bg-primary border-transparent text-primary-foreground [&>svg]:text-primary-foreground\",\n \"brand\": \"bg-primary border-transparent text-primary-foreground [&>svg]:text-primary-foreground\",\n \"informative\": \"bg-primary border-transparent text-primary-foreground [&>svg]:text-primary-foreground\",\n \"highlight\": \"bg-primary border-transparent text-primary-foreground [&>svg]:text-primary-foreground\",\n \"subtle\": {\n \"main\": \"bg-primary border-transparent text-primary-foreground [&>svg]:text-primary-foreground\",\n \"secondary\": \"bg-primary border-transparent text-primary-foreground [&>svg]:text-primary-foreground\",\n \"destructive\": \"bg-destructive border-transparent text-destructive-foreground [&>svg]:text-destructive-foreground\",\n \"success\": \"bg-primary border-transparent text-primary-foreground [&>svg]:text-primary-foreground\",\n \"warning\": \"bg-primary border-transparent text-primary-foreground [&>svg]:text-primary-foreground\",\n \"tertiary\": \"bg-muted border-transparent text-foreground [&>svg]:text-foreground\",\n \"brand\": \"bg-primary border-transparent text-primary-foreground [&>svg]:text-primary-foreground\",\n \"informative\": \"bg-primary border-transparent text-primary-foreground [&>svg]:text-primary-foreground\",\n \"highlight\": \"bg-primary border-transparent text-primary-foreground [&>svg]:text-primary-foreground\"\n }\n },\n \"slots\": {\n \"icon\": \"cursor-pointer\",\n \"bullet\": \"p-0.5 w-5 h-5\"\n },\n \"states\": {\n \"dismissable\": \"hover:opacity-80\"\n }\n },\n \"button\": {\n \"root\": \"font-primary group inline-flex shrink-0 items-center justify-center gap-2 rounded-md text-sm font-medium whitespace-nowrap transition-all outline-none focus-visible:border-ring focus-visible:ring-[3px] focus-visible:ring-ring/50 disabled:pointer-events-none disabled:opacity-50 aria-invalid:border-destructive aria-invalid:ring-destructive/20\",\n \"size\": {\n \"default\": \"h-9 px-4 py-2\",\n \"sm\": \"h-8 gap-1.5 px-3\",\n \"lg\": \"h-10 px-6\",\n \"small\": \"text-sm font-medium tracking-0 pl-3 pr-3 h-9\",\n \"large\": \"text-base font-semibold tracking-0 pl-4 pr-4 h-12\",\n \"icon\": \"size-9\",\n \"xs\": \"h-6 gap-1 px-2 text-xs\"\n },\n \"iconPosition\": {\n \"prefix\": {\n \"small\": \"pl-2\",\n \"default\": \"pl-3\",\n \"large\": \"pl-3\",\n \"sm\": \"pl-2\",\n \"lg\": \"pl-3\"\n },\n \"suffix\": {\n \"small\": \"pr-2\",\n \"default\": \"pr-3\",\n \"large\": \"pr-3\",\n \"sm\": \"pr-2\",\n \"lg\": \"pr-3\"\n },\n \"default\": {\n \"small\": \"w-8 px-0\",\n \"default\": \"w-9 px-0\",\n \"large\": \"w-10 px-0\",\n \"sm\": \"pl-2 pr-2 w-9\",\n \"lg\": \"pl-3 pr-3 w-12\"\n }\n },\n \"fullwidth\": {\n \"false\": \"\",\n \"true\": \"w-full\"\n },\n \"defaultVariants\": {\n \"variant\": \"main\",\n \"size\": \"default\"\n },\n \"compoundVariants\": {\n \"links\": \"p-0 text-sm font-medium tracking-0 h-fit\"\n },\n \"variant\": {\n \"main\": \"bg-primary text-primary-foreground hover:bg-primary/90\",\n \"secondary\": \"bg-secondary text-secondary-foreground hover:bg-secondary/80\",\n \"tertiary\": \"border bg-background shadow-xs hover:bg-accent hover:text-accent-foreground\",\n \"destructive\": \"bg-destructive text-white hover:bg-destructive/90 focus-visible:ring-destructive/20\",\n \"ghost\": \"hover:bg-accent hover:text-accent-foreground\",\n \"ghostmain\": \"text-primary hover:bg-accent hover:text-primary/90\",\n \"link\": \"text-primary underline-offset-4 hover:underline\",\n \"linkdestructive\": \"text-destructive underline-offset-4 hover:underline\",\n \"default\": \"bg-primary hover:bg-primary/90 active:bg-primary/90 disabled:opacity-50 text-primary-foreground hover:text-primary-foreground active:text-primary-foreground disabled:opacity-50 border-primary hover:border-transparent active:border-transparent disabled:opacity-50 border-0\",\n \"outline\": \"bg-background hover:bg-muted/80 active:bg-muted/80 disabled:opacity-50 text-muted-foreground hover:text-foreground active:text-foreground disabled:opacity-50 border-border hover:border-border active:border-border disabled:border-transparent border border-t border-b border-r border-l\",\n \"linkDestructive\": \"text-destructive hover:text-destructive active:text-destructive disabled:opacity-50\"\n },\n \"slots\": {\n \"icon\": {\n \"size\": {\n \"sm\": \"4\",\n \"default\": \"4\",\n \"lg\": \"4\"\n },\n \"color\": {\n \"main\": \"text-primary-foreground\",\n \"secondary\": \"text-secondary-foreground\",\n \"tertiary\": \"text-foreground group-hover:text-accent-foreground\",\n \"destructive\": \"text-white\",\n \"ghost\": \"text-foreground group-hover:text-accent-foreground\",\n \"ghostmain\": \"text-primary\",\n \"link\": \"text-primary\",\n \"linkdestructive\": \"text-destructive\"\n }\n }\n }\n },\n \"calendar\": {\n \"root\": \"p-3 rounded-md font-primary\",\n \"slots\": {\n \"caption\": {\n \"root\": \"flex justify-center pt-1 relative items-center\",\n \"label\": \"text-sm text-foreground leading-snug font-medium\"\n },\n \"months\": \"flex flex-col sm:flex-row space-y-4 sm:space-x-4 sm:space-y-0\",\n \"month\": \"space-y-4\",\n \"nav\": {\n \"root\": \"space-x-1 flex items-center\",\n \"button\": {\n \"next\": {\n \"root\": \"absolute right-1\",\n \"props\": {\n \"iconSize\": {\n \"else\": \"4\",\n \"ghost\": \"6\"\n },\n \"defaultVariant\": \"ghostmain\"\n }\n },\n \"root\": \"h-7 w-7 bg-transparent p-0 opacity-50 hover:opacity-100\",\n \"iconSize\": \"w-7 h-7\",\n \"previous\": {\n \"root\": \"absolute left-1\",\n \"props\": {\n \"iconSize\": {\n \"else\": \"4\",\n \"ghost\": \"6\"\n },\n \"defaultVariant\": \"ghostmain\"\n }\n }\n }\n },\n \"row\": \"flex w-full mt-2 cursor-not-allowed\",\n \"table\": \"w-full border-collapse space-y-1\",\n \"head\": {\n \"row\": \"flex\",\n \"cell\": \"text-muted-foreground leading-snug w-9 font-normal text-sm\"\n },\n \"cell\": \"text-center text-sm p-0 relative [&:has([aria-selected])]:bg-muted/80 first:[&:has([aria-selected])]:rounded-l-md last:[&:has([aria-selected])]:rounded-r-md focus-within:relative focus-within:z-20\",\n \"day\": {\n \"root\": \"h-9 w-9 p-0 font-normal text-foreground aria-selected:opacity-100 inline-flex items-center justify-center rounded-md text-sm font-medium transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-brand-mid focus-visible:ring-offset-2 disabled:opacity-50 disabled:pointer-events-none ring-offset-background hover:bg-muted/80 aria-selected:hover:bg-primary/90\",\n \"range\": {\n \"end\": \"day-range-end\",\n \"middle\": \"aria-selected:bg-muted/80 aria-selected:text-foreground aria-selected:hover:bg-muted/80\"\n },\n \"selected\": \"bg-primary text-primary-foreground hover:bg-primary/90 hover:text-primary-foreground focus:bg-primary focus:text-primary-foreground\",\n \"today\": \"bg-primary text-primary-foreground aria-selected:bg-primary/90 aria-selected:text-primary-foreground aria-selected:hover:bg-primary/90 aria-selected:focus:bg-primary/90\",\n \"outside\": \"opacity-50 opacity-50 aria-selected:text-foreground day-outside aria-selected:bg-muted/80 aria-selected:hover:bg-muted/80 aria-selected:hover:text-foreground aria-selected:focus:bg-muted/80 aria-selected:focus:text-foreground\",\n \"disabled\": \"text-foreground opacity-50\",\n \"hidden\": \"invisible\"\n },\n \"customRoot\": \"p-3 rounded-md font-primary\",\n \"header\": \"flex justify-center pt-1 relative items-center\",\n \"content\": \"grid grid-cols-3 gap-2\",\n \"options\": \"cursor-pointer\",\n \"selectGroup\": \"flex items-center gap-2\",\n \"nativeSelect\": \"h-8 rounded-md border border-input bg-background px-2 text-sm\",\n \"range\": {\n \"root\": \"p-3 rounded-md font-primary\",\n \"container\": \"flex flex-col gap-4 sm:flex-row\",\n \"row\": \"flex w-full mt-2\",\n \"navSpacer\": \"h-7 w-7\"\n }\n }\n },\n \"card\": {\n \"root\": \"flex flex-col gap-6 rounded-xl font-primary border bg-card text-foreground border-border relative py-6 shadow-sm\",\n \"slots\": {\n \"title\": \"text-base text-foreground font-semibold leading-normal\",\n \"description\": \"text-xs font-medium text-muted-foreground\",\n \"header\": \"flex flex-col gap-1.5 px-6\",\n \"content\": \"px-6\",\n \"footer\": \"flex gap-4 items-center px-6\"\n },\n \"props\": {\n \"footerAlign\": {\n \"justify\": \"flex justify-between\",\n \"end\": \"flex justify-end\",\n \"start\": \"flex justify-start\",\n \"stretch\": \"flex [&>*]:flex-1\"\n }\n },\n \"states\": {\n \"outside\": \"absolute w-full pt-8 mt-[-16px] -z-10\",\n \"noContent\": \"p-4\"\n }\n },\n \"chart\": {\n \"root\": \"font-primary flex aspect-video justify-center text-xs [&_.recharts-cartesian-axis-tick_text]:text-foreground [&_.recharts-cartesian-grid_line]:stroke-border/50 [&_.recharts-curve.recharts-tooltip-cursor]:stroke-border [&_.recharts-dot[stroke=\\\"#fff\\\"]]:stroke-transparent [&_.recharts-layer]:outline-none [&_.recharts-polar-grid_[stroke=\\\"#ccc\\\"]]:stroke-border [&_.recharts-radial-bar-background-sector]:text-muted-foreground [&_.recharts-rectangle.recharts-tooltip-cursor]:text-muted-foreground [&_.recharts-reference-line-line]:stroke-border [&_.recharts-sector[stroke=\\\"#fff\\\"]]:stroke-transparent [&_.recharts-sector]:outline-none [&_.recharts-surface]:outline-none\",\n \"slots\": {\n \"tooltip\": \"grid min-w-[8rem] items-start gap-1.5 rounded-lg border border-border/50 bg-background px-2.5 py-1.5 text-xs shadow-xl\",\n \"legend\": \"flex items-center justify-center gap-4\",\n \"legendItem\": \"h-2 w-2 shrink-0 rounded-[2px]\"\n }\n },\n \"checkbox\": {\n \"root\": \"peer size-4 shrink-0 rounded-[4px] border border-border bg-background shadow-xs transition-shadow outline-none focus-visible:border-ring focus-visible:ring-[3px] focus-visible:ring-ring/50 disabled:cursor-not-allowed disabled:opacity-50 data-[state=checked]:border-primary data-[state=checked]:bg-primary data-[state=checked]:text-primary-foreground\",\n \"slots\": {\n \"icon\": \"text-primary-foreground flex items-center justify-center\"\n }\n },\n \"checkboxField\": {\n \"root\": \"flex items-center gap-2 font-primary w-fit\",\n \"states\": {\n \"disabled\": \"opacity-5\"\n }\n },\n \"command\": {\n \"root\": \"flex h-full w-full flex-col overflow-hidden rounded-md bg-background text-foreground font-primary\",\n \"slots\": {\n \"dialog\": {\n \"content\": \"overflow-hidden p-0\",\n \"root\": \"**:data-[slot=command-input-wrapper]:h-12 [&_[cmdk-group-heading]]:px-2 [&_[cmdk-group-heading]]:font-medium [&_[cmdk-group-heading]]:text-foreground [&_[cmdk-group]]:px-2 [&_[cmdk-group]:not([hidden])_~[cmdk-group]]:pt-0 [&_[cmdk-input-wrapper]_svg]:h-5 [&_[cmdk-input-wrapper]_svg]:w-5 [&_[cmdk-input]]:h-12 [&_[cmdk-item]]:px-2 [&_[cmdk-item]]:py-3 [&_[cmdk-item]_svg]:h-5 [&_[cmdk-item]_svg]:w-5\"\n },\n \"input\": {\n \"wrapper\": \"flex h-9 items-center gap-2 border-b border-border px-3 text-muted-foreground\",\n \"icon\": \"size-4 shrink-0 opacity-50\",\n \"root\": \"flex h-10 w-full rounded-md bg-transparent py-3 text-sm text-foreground outline-hidden placeholder:text-muted-foreground disabled:cursor-not-allowed disabled:opacity-50\"\n },\n \"list\": \"max-h-[300px] scroll-py-1 overflow-x-hidden overflow-y-auto\",\n \"empty\": \"py-6 text-center text-sm\",\n \"group\": \"overflow-hidden p-1 text-foreground [&_[cmdk-group-heading]]:px-2 [&_[cmdk-group-heading]]:py-1.5 [&_[cmdk-group-heading]]:text-xs [&_[cmdk-group-heading]]:font-medium [&_[cmdk-group-heading]]:text-foreground\",\n \"separator\": \"-mx-1 h-px bg-muted\",\n \"item\": \"relative flex cursor-default items-center gap-2 rounded-sm px-2 py-1.5 text-sm text-foreground outline-hidden select-none data-[highlighted]:bg-muted/80 data-[highlighted]:text-foreground data-[selected=true]:bg-muted/80 data-[selected=true]:text-foreground data-[disabled]:pointer-events-none data-[disabled]:opacity-50 data-[disabled=true]:pointer-events-none data-[disabled=true]:opacity-50 [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*=size-])]:size-4 [&_svg:not([class*=text-])]:text-muted-foreground\",\n \"shortcut\": \"ml-auto text-xs tracking-widest text-muted-foreground\",\n \"combobox\": {\n \"label\": \"px-2 py-1.5 text-xs font-medium text-foreground\"\n }\n }\n },\n \"datePicker\": {\n \"root\": \"w-[280px] justify-start text-left font-normal gap-y-0 [&>span]:truncate font-primary\",\n \"slots\": {\n \"button\": \"inline-flex items-center justify-center whitespace-nowrap rounded-md text-sm font-normal ring-offset-background transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-brand-mid focus-visible:ring-offset-2 disabled:pointer-events-none disabled:opacity-50 text-sm font-medium tracking-0 pl-4 pr-4 h-10 bg-muted hover:bg-accent/80 active:bg-accent/80 disabled:opacity-50 border-border hover:border-border active:border-border disabled:opacity-50 border border-t border-b border-r border-l\",\n \"trigger\": {\n \"popover\": \"w-fit justify-start font-normal text-sm leading-none\",\n \"text\": \"truncate text-default-mid\",\n \"select\": \"w-full mx-auto mb-2\"\n },\n \"popover\": {\n \"content\": {\n \"root\": \"flex p-0 items-start gap-6 w-auto flex-col h-[563px] bg-popover z-50\",\n \"relaxed\": \"flex p-0 items-start gap-6 w-auto flex-col lg:flex-row h-[522px] lg:h-auto bg-popover z-50\",\n \"range\": \"w-auto p-0 z-50\"\n }\n },\n \"separator\": {\n \"root\": \"hidden\",\n \"relaxed\": \"h-[397px] shrink-0 hidden lg:flex\"\n },\n \"dateInput\": {\n \"relaxed\": \"lg:flex-row\",\n \"root\": \"flex justify-between gap-6 w-full flex-col\",\n \"wrapper\": \"flex gap-2 w-full\",\n \"control\": \"w-full justify-center\",\n \"separator\": \"py-1\"\n },\n \"calendar\": {\n \"container\": {\n \"wrapper\": \"h-[457px]\",\n \"root\": \"flex flex-col gap-2 items-start justify-between\",\n \"relaxed\": \"lg:w-[544px] h-[397px]\"\n }\n },\n \"buttons\": {\n \"root\": \"flex-1\",\n \"relaxed\": \"lg:flex-initial\",\n \"trigger\": \"w-fit justify-start\",\n \"container\": {\n \"root\": \"flex gap-2\",\n \"relaxed\": \"lg:pr-4\"\n }\n },\n \"selectContent\": \"z-50\",\n \"fullWidth\": \"w-full\"\n },\n \"props\": {\n \"presets\": {\n \"relaxed\": \"flex flex-col items-sart gap-2 w-[150px]\"\n }\n },\n \"states\": {\n \"isSelected\": {\n \"true\": \"pointer-events-none\",\n \"false\": \"w-full justify-start\"\n }\n }\n },\n \"dateInput\": {\n \"root\": \"flex border rounded-lg items-center text-sm px-1 font-medium leading-5 font-primary text-default-subtle h-10 border-border shadow-sm\",\n \"slots\": {\n \"arrowUp\": \"ArrowUp\",\n \"arrowDown\": \"ArrowDown\",\n \"arrowLeft\": \"ArrowLeft\",\n \"arrowRight\": \"ArrowRight\",\n \"delete\": \"Delete\",\n \"tab\": \"Tab\",\n \"backspace\": \"Backspace\",\n \"enter\": \"Enter\",\n \"inputs\": {\n \"month\": \"p-0 outline-none w-6 border-none text-center bg-background\",\n \"day\": \"p-0 outline-none w-7 border-none text-center bg-background\",\n \"year\": \"p-0 outline-none w-12 border-none text-center bg-background\"\n },\n \"span\": \"opacity-20 -mx-px\"\n }\n },\n \"dialog\": {\n \"slots\": {\n \"overlay\": \"fixed inset-0 z-50 bg-black/80 data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0\",\n \"content\": \"fixed flex flex-col lg:max-h-[90vh] max-h-[100vh] bg-background font-primary left-[50%] overflow-clip top-[50%] z-50 w-full translate-x-[-50%] translate-y-[-50%] data-[state=open]:animate-in data-[state=closed]:animate-out duration-200 border border-border data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 sm:rounded-2xl shadow-2xl\",\n \"body\": \"gap-0 flex flex-col h-full w-full overflow-y-auto mb-20 text-foreground\",\n \"close\": \"absolute right-4 top-4 opacity-70 transition-opacity hover:opacity-100 disabled:pointer-events-none\",\n \"header\": \"flex gap-0.5 flex-col p-6 pr-14 space-y-1.5 text-left bg-card sticky top-0\",\n \"footer\": \"bg-card gap-4 h-20 px-6 items-center fixed bottom-0 w-full flex\",\n \"title\": \"text-2xl font-semibold leading-normal tracking-tight text-foreground\",\n \"description\": \"text-sm text-muted-foreground leading-normal font-semibold\"\n },\n \"props\": {\n \"footerAlign\": {\n \"justify\": \"flex justify-between\",\n \"end\": \"flex justify-end\",\n \"start\": \"flex justify-start\",\n \"stretch\": \"flex [&>*]:flex-1\"\n },\n \"width\": {\n \"xs\": \"max-w-sm\",\n \"sm\": \"max-w-sm\",\n \"md\": \"max-w-md\",\n \"lg\": \"max-w-lg\",\n \"3xl\": \"max-w-3xl\",\n \"5xl\": \"max-w-5xl\",\n \"full\": \"max-w-full\",\n \"fit\": \"max-w-fit\"\n },\n \"height\": {\n \"full\": \"h-full\",\n \"auto\": \"h-auto\",\n \"else\": \"h-auto lg:h-full\"\n },\n \"padding\": {\n \"true\": \"px-6\",\n \"false\": \"px-0\"\n }\n },\n \"states\": {\n \"isSm\": \"w-full\"\n }\n },\n \"drawer\": {\n \"slots\": {\n \"overlay\": \"fixed inset-0 z-50 bg-black/80\",\n \"content\": {\n \"root\": \"overflow-clip fixed font-primary z-50 w-full\",\n \"wrapper\": \"w-full h-full flex flex-col rounded-lg border border-border bg-background overflow-clip shadow-2xl\"\n },\n \"header\": \"grid gap-0.5 text-left bg-card p-6 pr-14 sticky top-0 self-stretch\",\n \"footer\": \"flex h-20 gap-4 bg-card items-center p-6 sticky bottom-0 w-full\",\n \"title\": \"text-2xl font-semibold leading-none tracking-tight text-foreground\",\n \"description\": \"text-sm font-semibold text-muted-foreground\",\n \"close\": \"absolute right-4 top-4 z-51\",\n \"body\": \"gap-6 flex flex-col h-full w-full overflow-y-auto text-foreground max-h-[calc(100vh-160px)]\",\n \"side\": {\n \"left\": \"left-0 bottom-0\",\n \"right\": \"right-0 bottom-0\",\n \"bottom\": \"bottom-0\",\n \"top\": \"top-0\"\n },\n \"portal\": {\n \"overlay\": \"no-after\",\n \"content\": \"no_after p-2 max-h-screen\"\n }\n },\n \"props\": {\n \"footerAlign\": {\n \"justify\": \"flex justify-between\",\n \"end\": \"flex justify-end\",\n \"start\": \"flex justify-start\",\n \"stretch\": \"flex [&>*]:flex-1\"\n },\n \"width\": {\n \"xs\": \"max-w-sm\",\n \"sm\": \"max-w-sm\",\n \"md\": \"max-w-md\",\n \"lg\": \"max-w-lg\",\n \"3xl\": \"max-w-3xl\",\n \"5xl\": \"max-w-5xl\",\n \"full\": \"max-w-full\",\n \"fit\": \"max-w-fit\"\n },\n \"height\": {\n \"full\": \"h-full\",\n \"auto\": \"h-auto\",\n \"else\": \"h-auto lg:h-full\"\n },\n \"lgSide\": {\n \"left\": \"lg:left-0 lg:bottom-0 lg:top-auto lg:right-auto\",\n \"right\": \"lg:right-0 lg:bottom-0 lg:top-auto lg:left-auto\",\n \"bottom\": \"lg:bottom-0 lg:inset-x-auto lg:top-auto\",\n \"top\": \"lg:top-0 lg:inset-x-auto lg:bottom-auto\"\n },\n \"padding\": {\n \"true\": \"px-6\",\n \"false\": \"px-0\"\n }\n },\n \"states\": {\n \"isSm\": \"w-full\"\n }\n },\n \"dropdown\": {\n \"slots\": {\n \"subTrigger\": {\n \"root\": \"flex cursor-base select-none items-center rounded-sm px-2 py-1.5 text-sm outline-none text-foreground data-[highlighted]:bg-accent/80 data-[highlighted]:border-transparent data-[highlighted]:text-foreground\",\n \"icon\": \"ml-auto\"\n },\n \"subContent\": \"font-primary z-30 min-w-[8rem] overflow-hidden rounded-md border bg-popover p-1 text-foreground shadow-lg data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2\",\n \"content\": \"font-primary z-30 min-w-[8rem] gap-y-1 overflow-hidden border-border rounded-md border bg-popover p-1 text-foreground shadow-md data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2\",\n \"item\": \"group relative leading-snug font-normal border-0 border-transparent gap-x-2 hover:bg-muted/80 hover:border-transparent data-[disabled]:bg-transparent data-[disabled]:border-transparent text-foreground hover:text-foreground data-[disabled]:opacity-50 flex cursor-base select-none bg-transparent items-center rounded-sm px-2 py-1.5 text-sm outline-none transition-colors focus:bg-muted focus:text-foreground data-[disabled]:pointer-events-none data-[disabled]:opacity-50 data-[highlighted]:bg-muted/80 data-[highlighted]:border-transparent data-[highlighted]:text-foreground\",\n \"destructive\": {\n \"item\": \"group relative leading-snug font-normal border-0 border-transparent gap-x-2 hover:bg-muted/80 hover:border-transparent data-[disabled]:bg-transparent data-[disabled]:border-transparent text-destructive hover:text-destructive data-[disabled]:text-destructive flex cursor-base select-none bg-transparent items-center rounded-sm px-2 py-1.5 text-sm outline-none transition-colors focus:bg-muted data-[disabled]:pointer-events-none data-[disabled]:opacity-50 data-[highlighted]:bg-muted/80 data-[highlighted]:border-transparent data-[highlighted]:text-destructive\",\n \"shortcut\": \"ml-auto tracking-widest text-destructive\"\n },\n \"checkbox\": {\n \"item\": \"group relative leading-snug font-normal border-0 border-transparent gap-x-2 hover:bg-accent/80 hover:border-transparent data-[disabled]:bg-transparent data-[disabled]:border-transparent text-foreground hover:text-foreground data-[disabled]:opacity-50 flex cursor-base select-none bg-transparent items-center rounded-sm px-2 py-1.5 text-sm outline-none transition-colors focus:bg-muted focus:text-foreground data-[disabled]:pointer-events-none data-[disabled]:opacity-50 data-[highlighted]:bg-accent/80 data-[highlighted]:border-transparent data-[highlighted]:text-foreground\",\n \"icon\": \"h-4 w-4 shrink-0 justify-center\"\n },\n \"radio\": {\n \"item\": \"relative flex cursor-base select-none items-center rounded-sm py-1.5 pl-8 pr-2 text-sm outline-none transition-colors data-[disabled]:pointer-events-none data-[disabled]:opacity-50 text-foreground data-[highlighted]:bg-accent/80 data-[highlighted]:border-transparent data-[highlighted]:text-foreground\",\n \"icon\": \"absolute left-2 flex h-3.5 w-3.5 items-center justify-center\",\n \"indicator\": \"fill-current\"\n },\n \"label\": \"bg-transparent border-transparent text-foreground px-2 py-1.5 rounded-sm text-sm leading-snug font-semibold\",\n \"separator\": \"-mx-1 my-1 bg-muted h-px\",\n \"inset\": \"pl-8\",\n \"trigger\": \"outline-none\",\n \"shortcut\": \"ml-auto tracking-widest text-muted-foreground group-hover:text-muted-foreground disabled:opacity-50\"\n }\n },\n \"fileupload\": {\n \"root\": \"flex flex-col gap-4 items-center w-[343px] relative\",\n \"slots\": {\n \"uploader\": \"w-full relative shadow-sm shadow-sm rounded-md\",\n \"card\": \"p-4 w-full min-h-[144px] flex flex-col justify-center items-center gap-0 border-border bg-muted shadow-sm\",\n \"container\": \"flex flex-col justify-center items-center gap-1 self-stretch relative\",\n \"name\": \"text-center text-foreground font-primary text-lg w-full truncate font-semibold h-[27px]\",\n \"description\": \"text-center font-primary text-muted-foreground text-sm w-full truncate font-medium h-[27px]\",\n \"list\": {\n \"title\": \"w-full flex justify-between items-center\",\n \"root\": \"w-full font-primary\",\n \"icon\": {\n \"positive\": \"[&>svg]:text-primary\",\n \"negative\": \"[&>svg]:text-destructive\"\n }\n },\n \"spinner\": \"text-primary\",\n \"button\": \"absolute z-20 top-4 right-4\",\n \"cursor\": \"cursor-pointer\",\n \"borderless\": \"border-0\"\n },\n \"states\": {\n \"dragging\": \"bg-muted\"\n }\n },\n \"form\": {\n \"slots\": {\n \"label\": {\n \"error\": \"text-destructive font-primary\"\n },\n \"description\": \"text-sm text-muted-foreground font-primary\",\n \"message\": \"text-sm font-medium text-destructive font-primary\",\n \"item\": {\n \"vertical\": \"flex flex-col gap-2 w-full\",\n \"horizontal\": \"flex flex-row gap-2 items-center\"\n }\n }\n },\n \"input\": {\n \"root\": \"font-primary flex h-9 w-full min-w-0 rounded-md border border-input bg-transparent px-3 py-1 text-base md:text-sm shadow-xs transition-[color,box-shadow] outline-none text-foreground placeholder:text-muted-foreground file:inline-flex file:h-7 file:border-0 file:bg-transparent file:text-sm file:font-medium file:text-foreground focus-visible:border-ring focus-visible:ring-[3px] focus-visible:ring-ring/50 aria-invalid:border-destructive disabled:cursor-not-allowed disabled:opacity-50\",\n \"slots\": {\n \"file\": \"text-muted-foreground\",\n \"container\": \"relative w-full text-foreground\",\n \"prefixIcon\": {\n \"root\": \"absolute left-3 top-1/2 transform -translate-y-1/2 disabled:opacity-100 disabled:cursor-not-allowed\",\n \"props\": {\n \"size\": \"4\"\n }\n },\n \"prefix\": \"absolute left-3 top-1/2 transform -translate-y-1/2 font-medium text-sm font-primary disabled:opacity-100 disabled:opacity-50 disabled:opacity-50 disabled:cursor-not-allowed\",\n \"prefixSlot\": \"absolute left-3 top-1/2 transform -translate-y-1/2 disabled:opacity-100 disabled:opacity-50 disabled:opacity-50 disabled:cursor-not-allowed\",\n \"suffixIcon\": {\n \"root\": \"absolute right-3 top-1/2 transform -translate-y-1/2 disabled:opacity-100 disabled:cursor-not-allowed\",\n \"props\": {\n \"size\": \"4\"\n }\n },\n \"suffix\": \"absolute right-3 top-1/2 transform -translate-y-1/2 font-medium text-sm font-primary disabled:opacity-100 disabled:opacity-50 disabled:opacity-50 disabled:cursor-not-allowed\",\n \"suffixSlot\": \"absolute right-3 top-1/2 transform -translate-y-1/2 disabled:opacity-100 disabled:opacity-50 disabled:opacity-50 disabled:cursor-not-allowed\",\n \"clearable\": {\n \"root\": \"absolute right-3 top-1/2 transform -translate-y-1/2 disabled:opacity-100 disabled:cursor-not-allowed cursor-pointer w-5 h-5 text-primary hover:text-primary/90 active:text-primary/90 p-0 hover:bg-transparent active:bg-transparent\",\n \"props\": {\n \"size\": \"default\"\n }\n },\n \"passwordIcon\": \"absolute right-3 cursor-pointer top-1/2 transform -translate-y-1/2 font-medium text-sm font-primary disabled:opacity-100 disabled:opacity-50 disabled:opacity-50 disabled:cursor-not-allowed\",\n \"clearableIconSuffix\": \"right-12\",\n \"textCenter\": \"text-center\"\n }\n },\n \"inputOTP\": {\n \"root\": \"flex items-center gap-x-2 has-[:disabled]:opacity-50 font-primary\",\n \"slots\": {\n \"group\": \"flex items-center\",\n \"input\": \"disabled:cursor-not-allowed\",\n \"slot\": {\n \"root\": \"p-3 font-medium relative flex h-10 w-10 bg-background text-muted-foreground items-center justify-center border-y border-r border-border text-sm transition-all first:rounded-l-md first:border-l last:rounded-r-md text-center shadow-sm\",\n \"active\": \"z-10 ring-2\"\n },\n \"fakeCaret\": {\n \"wrapper\": \"pointer-events-none absolute inset-0 flex items-center justify-center\",\n \"root\": \"h-4 w-px animate-caret-blink bg-accent duration-1000\"\n }\n }\n },\n \"label\": {\n \"root\": \"flex items-center gap-2 text-sm leading-none font-medium select-none font-primary group-data-[disabled=true]:pointer-events-none group-data-[disabled=true]:opacity-50 peer-disabled:cursor-not-allowed peer-disabled:opacity-50\",\n \"slots\": {\n \"main\": \"text-muted-foreground disable:opacity-50\",\n \"secondary\": \"text-muted-foreground disable:opacity-50\"\n },\n \"states\": {\n \"disabled\": \"opacity-50\"\n }\n },\n \"list\": {\n \"root\": \"gap-y-2 flex flex-col rounded-2xl font-primary text-foreground\",\n \"slots\": {\n \"content\": \"border border-border rounded-2xl bg-card\",\n \"item\": \"p-3 px-4 gap-x-3 border-border border-b gap-y-0.5 min-h-14 flex items-center justify-between\",\n \"wrapper\": \"justify-between flex items-center gap-x-3 w-full\",\n \"attribute\": \"flex flex-col gap-x-1 justify-center\",\n \"first\": \"text-base leading-normal font-medium text-foreground text-right whitespace-nowrap\",\n \"second\": \"text-sm leading-normal font-medium text-muted-foreground text-right whitespace-nowrap\",\n \"itemTitle\": {\n \"root\": \"flex flex-col\",\n \"title\": \"text-base leading-normal font-semibold text-foreground\",\n \"description\": \"text-sm leading-normal font-medium text-muted-foreground\"\n },\n \"title\": {\n \"root\": \"text-primary p-0\",\n \"main\": \"text-base leading-normal font-semibold\",\n \"secondary\": \"text-xs leading-normal font-medium\",\n \"justify\": \"flex justify-between\",\n \"end\": \"flex justify-end\",\n \"start\": \"flex justify-start\",\n \"stretch\": \"flex [&>*]:flex-1\"\n }\n },\n \"props\": {\n \"naked\": {\n \"false\": \"[&>*:last-child]:[&>*:last-child]:border-b-0 [&>*:first-child]:[&>*:last-child]:rounded-t-2xl [&>*:last-child]:[&>*:last-child]:rounded-b-2xl\",\n \"true\": \"[&>*:last-child]:bg-transparent border-0 [&>*:last-child]:border-transparent rounded-none [&>*:last-child>*]:px-0\"\n },\n \"shadow\": {\n \"true\": \"[&>*:last-child]:shadow-none\",\n \"false\": \"[&>*:last-child]:shadow-sm\"\n }\n },\n \"states\": {\n \"interactive\": \"hover:bg-primary/90 cursor-pointer\",\n \"inverted\": \"[&>*]:flex-col-reverse\"\n }\n },\n \"navbar\": {\n \"root\": \"flex flex-col w-full items-center z-20\",\n \"variant\": {\n \"relaxed\": \"py-5 px-0 gap-4 gap-y-1\",\n \"compact\": \"py-3 px-0 gap-2\"\n },\n \"slots\": {\n \"wrapper\": \"font-primary font-medium flex flex-col w-full z-20 absolute w-full top-0 left-1/2 transform -translate-x-1/2 text-sm text-foreground px-6 bg-transparent lg:bg-transparent\",\n \"container\": \"flex w-full flex-col items-start z-20 justify-center flex-1\",\n \"content\": \"h-10 flex w-full relative gap-4\",\n \"isTitle\": \"h-auto items-center\",\n \"centerTitle\": \"flex-col items-center\",\n \"external\": \"w-full hidden lg:flex\",\n \"center\": {\n \"root\": \"font-semibold h-full flex items-center max-w-full min-w-0 flex-[2] flex-col justify-center text-center\",\n \"relaxed\": \"text-lg leading-normal\",\n \"text\": \"line-clamp-1 w-full\",\n \"compact\": \"text-lg\"\n },\n \"left\": \"flex flex-1 justify-start items-center h-full gap-2 shrink-0\",\n \"right\": \"flex flex-1 justify-end items-center h-full shrink-0 gap-4\"\n }\n },\n \"page\": {\n \"root\": \"ff-page bg-background lg:bg-card h-screen text-foreground font-primary\",\n \"variant\": {\n \"focus\": \"bg-background lg:bg-background h-auto min-h-screen\",\n \"focusOld\": \"bg-card lg:bg-card\",\n \"inset\": \"bg-background lg:bg-background\",\n \"focus-inset\": \"bg-background lg:bg-background\",\n \"inset-2col\": \"bg-background lg:bg-background\",\n \"inset-max-w\": \"bg-background lg:bg-background\",\n \"inset-no-bg\": \"bg-muted lg:bg-muted\"\n },\n \"slots\": {\n \"side\": {\n \"root\": \"ff-pageSide px-4 py-4 lg:px-8 lg:py-8 pb-1 lg:pb-8 lg:border-border lg:border-r lg:w-80 w-full flex flex-col items-center lg:h-full h-fit lg:min-w-80\",\n \"focus\": \"lg:py-10 lg:px-11 px-5 py-4 pb-4 lg:pb-10 gap-8 min-w-0 lg:min-w-0 lg:rounded-l-3xl rounded-t-3xl lg:rounded-t-none w-full lg:w-full bg-primary flex-col items-start overflow-hidden\"\n },\n \"container\": {\n \"root\": \"ff-pageContainer flex flex-col items-center w-full h-full lg:h-full min-h-full lg:max-w-7xl bg-transparent\",\n \"focus\": \"max-w-5xl min-h-0 h-full lg:h-fit\",\n \"focusOld\": \"bg-transparent lg:bg-transparent max-w-[9999px] lg:max-w-7xl rounded-t-none rounded-b-none border-0 border-border\",\n \"focus-inset\": \"max-w-[358px] lg:max-w-3xl lg:min-h-[536px] min-h-[576px] h-fit lg:h-fit min-h-none rounded-lg border border-border bg-card lg:bg-card shadow-sm relative overflow-hidden pb-18 lg:pb-[88px]\",\n \"inset\": \"max-w-[9999px] lg:max-w-[9999px] rounded-lg border border-border bg-card lg:bg-card shadow-sm relative overflow-hidden shadow-sm pb-18 lg:pb-[88px]\",\n \"inset-max-w\": \"max-w-[9999px] lg:max-w-[9999px] rounded-lg border border-border bg-card lg:bg-card shadow-sm relative overflow-hidden shadow-sm pb-18 lg:pb-[88px]\",\n \"inset-2col\": \"max-w-[9999px] lg:max-w-[1216px] rounded-lg border lg:min-h-0 lg:max-h-[800px] border-border bg-card lg:bg-card shadow-sm relative overflow-hidden shadow-sm\",\n \"inset-no-bg\": \"max-w-[9999px] lg:max-w-[1440px] bg-transparent lg:bg-transparent shadow-sm relative overflow-hidden shadow-sm\"\n },\n \"wrap\": {\n \"root\": \"ff-pageWrap pt-16 pb-0 lg:pb-0 lg:pt-20 flex items-center flex-col self-stretch h-full bg-transparent lg:bg-transparent\",\n \"focusOld\": \"pt-16 pb-28 lg:pt-24 lg:pb-28 h-full\",\n \"focus\": \"lg:pt-0 pt-0 pb-0 lg:pb-0 min-h-screen\",\n \"focus-inset\": \"pt-16 pb-4 lg:pt-20 lg:pb-0 bg-transparent lg:bg-transparent\",\n \"inset\": \"px-0 pb-0 pt-16 lg:pt-20 bg-transparent lg:bg-transparent\",\n \"inset-max-w\": \"px-0 pb-0 pt-16 lg:pt-20 bg-transparent lg:bg-transparent\",\n \"inset-2col\": \"px-0 py-0 lg:px-0 lg:py-0 bg-transparent lg:bg-transparent\",\n \"inset-no-bg\": \"px-0 pb-0 pt-16 lg:pt-20 bg-transparent lg:bg-transparent\"\n },\n \"content\": {\n \"root\": \"ff-pageContent flex gap-16 w-full self-stretch items-start h-full\",\n \"focus\": \"lg:pt-0 pt-0 pb-0 lg:pb-0 border border-border overflow-hidden\",\n \"focus-inset\": \"lg:gap-16 gap-0 justify-center items-start self-stretch w-full\",\n \"focusOld\": \"justify-center\",\n \"inset\": \"gap-16 self-stretch w-full\",\n \"inset-max-w\": \"gap-16 self-stretch w-full justify-center overflow-x-auto lg:overflow-x-hidden\",\n \"inset-2col\": \"lg:gap-16 gap-0 self-stretch w-full justify-center\",\n \"inset-no-bg\": \"lg:gap-16 gap-0 self-stretch w-full items-start\"\n },\n \"main\": {\n \"root\": \"ff-pageMain h-full w-full bg-transparent max-w-none gap-y-6 flex flex-col items-start lg:py-6 lg:px-6 px-4 py-4 max-w-[9999px] flex-1 self-stretch overflow-x-auto lg:overflow-x-hidden\",\n \"focus\": \"lg:px-10 lg:py-10 px-4 ly-4 w-full flex-col justify-center items-start gap-0 lg:min-h-0\",\n \"focusOld\": \"bg-transparent lg:bg-transparent border-transparent lg:border-transparent px-0 py-0 lg:px-0 lg:py-0 max-w-[9999px] lg:max-w-3xl\",\n \"focus-inset\": \"lg:max-w-3xl max-w-[9999px] lg:py-6 lg:px-6 px-4 py-4 lg:gap-6 gap-4 bg-transparent items-start w-full\",\n \"noPadding\": \"lg:px-0 lg:py-0 py-0 px-0\",\n \"inset\": \"lg:min-h-[536px] min-h-[576px] max-w-[9999px] lg:py-6 lg:px-6 px-4 py-4 lg:gap-6 gap-4 bg-transparent lg:items-center items-start\",\n \"inset-2col\": \"lg:min-h-[536px] min-h-[576px] max-w-[9999px] lg:flex-row flex-col-reverse lg:py-0 lg:px-0 px-0 py-0 lg:gap-0 gap-0 bg-transparent lg:items-start items-start\",\n \"inset-no-bg\": \"lg:min-h-[536px] min-h-[576px] max-w-[9999px] lg:py-6 lg:px-6 px-4 py-4 lg:gap-6 gap-4 bg-transparent lg:items-center items-start\",\n \"inset-max-w\": \"lg:min-h-[536px] min-h-[576px] lg:h-fit h-fit lg:max-w-3xl max-w-[9999px] self-stretch lg:py-6 lg:px-6 px-4 py-4 lg:gap-6 gap-4 bg-transparent lg:items-center items-start\"\n },\n \"inner\": {\n \"root\": \"ff-pageInner flex flex-col items-center w-full h-full min-h-full self-stretch bg-card\",\n \"focus\": \"lg:py-6 lg:px-6 px-2 py-2 h-full items-center justify-center min-h-screen bg-transparent\",\n \"noPadding\": \"lg:px-0 lg:py-0 py-0 px-0\",\n \"inset\": \"lg:px-6 px-4 pt-0 lg:pb-6 pb-4 bg-transparent\",\n \"inset-max-w\": \"lg:px-6 px-4 pt-0 lg:pb-6 pb-4 bg-transparent\",\n \"inset-2col\": \"lg:px-6 px-4 lg:pb-6 pb-6 lg:pt-6 pt-4 bg-transparent lg:justify-center\",\n \"focus-inset\": \"lg:px-0 px-0 lg:pt-6 pt-2 lg:pb-12 pb-4 bg-transparent\",\n \"inset-no-bg\": \"lg:px-0 px-0 pt-0 lg:pb-0 pb-0 bg-transparent\"\n }\n },\n \"props\": {\n \"layout\": {\n \"props\": {\n \"options\": \"main,focus\"\n }\n }\n }\n },\n \"multiSelect\": {\n \"slots\": {\n \"trigger\": \"flex w-full items-center bg-background h-auto min-h-10 max-h-auto p-3 px-4 justify-between [&_svg]:pointer-events-auto rounded-md font-normal\",\n \"wrapper\": \"flex flex-wrap items-center gap-2\",\n \"optionIcon\": \"mr-2\",\n \"controls\": \"flex items-center justify-between gap-2\",\n \"separator\": \"flex min-h-6 h-full\",\n \"noValue\": \"flex items-center justify-between w-full mx-auto\",\n \"placeholder\": \"text-sm text-foreground mx-3\",\n \"item\": \"cursor-pointer justify-normal gap-1\",\n \"noClearable\": \"ml-2\",\n \"createNew\": \"flex flex-col gap-2 items-center\",\n \"createNewButton\": \"w-fit\",\n \"error\": \"px-3 py-1.5 text-destructive text-xs\",\n \"empty\": \"px-2 py-1.5 text-xs text-muted-foreground\"\n },\n \"states\": {\n \"selected\": \"flex justify-between items-center w-full\"\n }\n },\n \"pdfViewer\": {\n \"root\": \"w-full h-full font-primary\",\n \"slots\": {\n \"worker\": {\n \"root\": \"rpv-core__viewer flex h-full relative border\",\n \"wrapper\": \"w-full h-full\"\n },\n \"toolbar\": {\n \"root\": \"items-center rounded-sm bottom-6 flex left-1/2 p-1 absolute z-[1] bg-muted translate-x-[-50%]\",\n \"icon\": {\n \"root\": \"px-0 py-0.5\",\n \"center\": \"px-0 py-0.5 ml-auto\"\n }\n },\n \"input\": \"w-[40px] mr-2\",\n \"viewer\": \"flex-1 overflow-hidden\"\n }\n },\n \"phoneInput\": {\n \"root\": \"font-primary focus:placeholder:text-muted-foreground w-full text-foreground file:disabled:placeholder:opacity-50 gap-x-2 file:disabled:opacity-50 file:disabled:opacity-50 file:disabled:opacity-50 leading-relaxed font-medium font-primary text-sm disabled:opacity-100 h-10 file:h-full gap-x-2 px-3 py-2 bg-background border-border placeholder:text-muted-foreground rounded-md focus:ring border focus:ring-blue-600 focus:ring-2 focus:ring-offset-1 focus:bg-muted focus-visible:outline-none focus:border-border focus:text-foreground disabled:opacity-50 disabled:border-border file:border-0 disabled:placeholder:opacity-50 disabled:opacity-50 disabled:opacity-50 file:bg-transparent file:border-border file:placeholder:text-muted-foreground file:text-foreground disabled:cursor-not-allowed [&::-webkit-search-cancel-button]:hidden [&::-webkit-search-decoration]:hidden shadow-sm\",\n \"slots\": {\n \"file\": \"text-muted-foreground\",\n \"container\": \"relative w-full text-foreground\",\n \"prefixIcon\": {\n \"root\": \"absolute left-3 top-1/2 transform -translate-y-1/2 disabled:opacity-100 disabled:cursor-not-allowed\",\n \"props\": {\n \"size\": \"4\"\n }\n },\n \"prefix\": \"absolute left-3 top-1/2 transform -translate-y-1/2 font-medium text-sm font-primary disabled:opacity-100 disabled:opacity-50 disabled:opacity-50 disabled:cursor-not-allowed\",\n \"prefixSlot\": \"absolute left-3 top-1/2 transform -translate-y-1/2 disabled:opacity-100 disabled:opacity-50 disabled:opacity-50 disabled:cursor-not-allowed\",\n \"suffixIcon\": {\n \"root\": \"absolute right-3 top-1/2 transform -translate-y-1/2 disabled:opacity-100 disabled:cursor-not-allowed\",\n \"props\": {\n \"size\": \"4\"\n }\n },\n \"suffix\": \"absolute right-3 top-1/2 transform -translate-y-1/2 font-medium text-sm font-primary disabled:opacity-100 disabled:opacity-50 disabled:opacity-50 disabled:cursor-not-allowed\",\n \"suffixSlot\": \"absolute right-3 top-1/2 transform -translate-y-1/2 disabled:opacity-100 disabled:opacity-50 disabled:opacity-50 disabled:cursor-not-allowed\",\n \"clearable\": {\n \"root\": \"absolute right-3 top-1/2 transform -translate-y-1/2 disabled:opacity-100 disabled:cursor-not-allowed cursor-pointer w-5 h-5 text-primary hover:text-primary/90 active:text-primary/90 p-0 hover:bg-transparent active:bg-transparent\",\n \"props\": {\n \"size\": \"default\"\n }\n },\n \"passwordIcon\": \"absolute right-3 cursor-pointer top-1/2 transform -translate-y-1/2 font-medium text-sm font-primary disabled:opacity-100 disabled:opacity-50 disabled:opacity-50 disabled:cursor-not-allowed\",\n \"clearableIconSuffix\": \"right-12\",\n \"wrapper\": \"flex gap-4\",\n \"selectorWrapper\": \"flex items-center\",\n \"nativeSelect\": \"base-select\",\n \"trigger\": {\n \"layout\": \"flex items-center\"\n },\n \"dialCode\": \"ml-2\",\n \"triggerIcon\": \"ml-2 h-4 w-4\",\n \"flagIcon\": \"-mr-2 h-5 w-5\",\n \"content\": \"w-[300px] p-0\",\n \"item\": \"gap-2\",\n \"itemLabel\": \"flex-1 text-sm\",\n \"input\": \"w-full\",\n \"flag\": \"bg-muted flex h-4 w-6 overflow-hidden rounded-sm\"\n }\n },\n \"popover\": {\n \"root\": \"z-30 font-primary w-72 rounded-md border gap-0 border-border bg-popover text-foreground shadow-md outline-none data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 shadow-md\",\n \"slots\": {\n \"trigger\": \"rounded-md\"\n },\n \"props\": {\n \"padding\": {\n \"true\": \"p-4\",\n \"false\": \"p-0\"\n }\n }\n },\n \"progress\": {\n \"root\": \"relative h-2 w-full overflow-hidden rounded-full bg-primary/20\",\n \"slots\": {\n \"indicator\": \"h-full w-full rounded-full flex-1 bg-primary transition-all\"\n }\n },\n \"radiogroup\": {\n \"color\": {\n \"root\": \"text-primary\",\n \"disabled\": \"opacity-50\"\n },\n \"slots\": {\n \"groupe\": \"grid gap-2 font-primary text-foreground\",\n \"item\": \"aspect-square group size-4 shrink-0 bg-background text-primary border-border rounded-full border shadow-xs focus:outline-none focus-visible:ring-[3px] focus-visible:ring-ring/50 disabled:cursor-not-allowed disabled:opacity-50\",\n \"indicator\": \"flex items-center justify-center\",\n \"icon\": \"size-2 rounded-full\"\n }\n },\n \"radiogroupeField\": {\n \"root\": \"flex gap-2 font-primary self-stretch p-px\",\n \"states\": {\n \"disabled\": \"opacity-50\"\n }\n },\n \"segmented\": {\n \"root\": \"relative\",\n \"slots\": {\n \"icon\": \"text-primary\",\n \"trigger\": \"tab-trigger\",\n \"activeTrigger\": \"tab-trigger-active\"\n },\n \"states\": {\n \"active\": \"[&>svg]:text-primary\",\n \"disabled\": \"pointer-events-none opacity-50\"\n }\n },\n \"select\": {\n \"slots\": {\n \"trigger\": \"flex w-full items-center justify-between gap-2 font-primary rounded-md px-3 py-2 border border-border bg-transparent text-sm text-muted-foreground shadow-xs transition-[color,box-shadow] outline-none focus-visible:border-ring focus-visible:ring-[3px] focus-visible:ring-ring/50 disabled:cursor-not-allowed disabled:opacity-50 [&>span]:truncate h-9\",\n \"scrollButton\": \"flex cursor-base items-center justify-center py-1\",\n \"content\": {\n \"root\": \"font-primary p-1 max-h-96 min-w-32 relative bg-popover text-popover-foreground border-border gap-y-1 border rounded-md z-30 overflow-hidden data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 shadow-md\",\n \"popper\": \"data-[side=bottom]:translate-y-1 data-[side=left]:-translate-x-1 data-[side=right]:translate-x-1 data-[side=top]:-translate-y-1\"\n },\n \"label\": \"text-sm leading-snug font-semibold bg-transparent border-transparent text-foreground pl-8 pr-2 pt-1.5 pb-1.5\",\n \"item\": {\n \"root\": \"select-none focus:outline-none relative flex w-full items-center data-[disabled]:opacity-50 data-[disabled]:opacity-50 rounded-sm pl-8 pr-2 pt-1.5 pb-1.5 font-normal text-sm leading-snug border-0 bg-transparent border-transparent hover:bg-muted/80 hover:border-transparent data-[disabled]:bg-transparent data-[disabled]:border-transparent text-foreground hover:text-foreground data-[highlighted]:text-foreground data-[highlighted]:bg-muted/80 data-[highlighted]:border-transparent\",\n \"icon\": \"absolute left-2 flex h-3.5 w-3.5 items-center justify-center\"\n },\n \"separator\": \"-mx-1 my-1 h-px bg-border\",\n \"viewport\": \"\",\n \"group\": \"w-full\",\n \"icon\": \"opacity-50\"\n }\n },\n \"separator\": {\n \"root\": \"bg-transparent border-border border-b text-muted-foreground rounded-full font-normal\",\n \"slots\": {\n \"container\": {\n \"root\": \"flex gap-2 font-primary text-foreground\",\n \"horizontal\": \"flex-row items-center w-full\",\n \"vertical\": \"flex-col items-center h-full\"\n },\n \"vertical\": \"h-full w-[1px] border-b-0 border-l\",\n \"horizontal\": \"h-[1px] w-full\"\n },\n \"props\": {\n \"padding\": {\n \"horizontal\": \"py-4\",\n \"vertical\": \"px-4\"\n }\n }\n },\n \"sheet\": {\n \"slots\": {\n \"overlay\": \"fixed inset-0 z-50 bg-black/80 data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0\",\n \"content\": {\n \"base\": \"fixed z-50 gap-4 bg-background p-6 shadow-lg transition ease-in-out data-[state=closed]:duration-300 data-[state=open]:duration-500 data-[state=open]:animate-in data-[state=closed]:animate-out\",\n \"variants\": {\n \"top\": \"inset-x-0 top-0 border-b data-[state=closed]:slide-out-to-top data-[state=open]:slide-in-from-top\",\n \"bottom\": \"inset-x-0 bottom-0 border-t data-[state=closed]:slide-out-to-bottom data-[state=open]:slide-in-from-bottom\",\n \"left\": \"inset-y-0 left-0 h-full w-3/4 border-r data-[state=closed]:slide-out-to-left data-[state=open]:slide-in-from-left sm:max-w-sm\",\n \"right\": \"inset-y-0 right-0 h-full w-3/4 border-l data-[state=closed]:slide-out-to-right data-[state=open]:slide-in-from-right sm:max-w-sm\"\n }\n },\n \"closeButton\": \"absolute right-4 top-4 rounded-sm opacity-70 transition-opacity hover:opacity-100 focus:outline-none focus:ring-2 focus:ring-brand-mid focus:ring-offset-2 disabled:pointer-events-none data-[state=open]:bg-muted\",\n \"header\": \"flex flex-col space-y-2 text-center sm:text-left\",\n \"footer\": \"flex flex-col-reverse sm:flex-row sm:justify-end sm:space-x-2\",\n \"title\": \"text-lg font-semibold text-foreground\",\n \"description\": \"text-sm text-muted-foreground\",\n \"srOnly\": \"sr-only\"\n }\n },\n \"sidebar\": {\n \"root\": {\n \"base\": \"flex h-full w-[--sidebar-width] flex-col bg-background text-foreground\",\n \"props\": {\n \"width\": {\n \"root\": \"16rem\",\n \"icon\": \"88px\",\n \"mobile\": \"18rem\"\n },\n \"shortcut\": \"\"\n },\n \"container\": \"flex h-full w-full flex-col\",\n \"default\": \"group peer hidden lg:block\",\n \"wrapper\": {\n \"base\": \"duration-200 relative h-svh w-[--sidebar-width] bg-transparent transition-[width] ease-linear\",\n \"collapsibleOffcanvas\": \"group-data-[collapsible=offcanvas]:w-0\",\n \"flipped\": \"group-data-[side=right]:rotate-180\",\n \"variants\": {\n \"floating\": \"group-data-[collapsible=icon]:w-[calc(var(--sidebar-width-icon)_+_theme(spacing.4))]\",\n \"inset\": \"group-data-[collapsible=icon]:w-[calc(var(--sidebar-width-icon)_+_theme(spacing.4))]\",\n \"default\": \"group-data-[collapsible=icon]:w-[--sidebar-width-icon]\"\n }\n },\n \"fixed\": {\n \"base\": \"duration-200 fixed inset-y-0 z-10 hidden h-svh w-[--sidebar-width] transition-[left,right,width] ease-linear md:flex border-border\",\n \"side\": {\n \"left\": \"left-0 group-data-[collapsible=offcanvas]:left-[calc(var(--sidebar-width)*-1)]\",\n \"right\": \"right-0 group-data-[collapsible=offcanvas]:right-[calc(var(--sidebar-width)*-1)]\"\n },\n \"variants\": {\n \"floatingOrInset\": \"p-2 group-data-[collapsible=icon]:w-[calc(var(--sidebar-width-icon)_+_theme(spacing.4)_+2px)]\",\n \"default\": \"group-data-[collapsible=icon]:w-[--sidebar-width-icon] group-data-[side=left]:border-r group-data-[side=right]:border-l\"\n },\n \"inner\": \"flex h-full w-full flex-col text-foreground bg-background group-data-[variant=floating]:rounded-lg group-data-[variant=floating]:border group-data-[variant=floating]:border-border group-data-[variant=floating]:shadow\"\n },\n \"foreground\": \"text-sidebar-foreground\"\n },\n \"slots\": {\n \"sheet\": {\n \"root\": \"w-[--sidebar-width] bg-background p-0 text-foreground [&>button]:hidden\"\n },\n \"provider\": {\n \"wrapper\": \"group/sidebar-wrapper flex min-h-svh w-full has-[[data-variant=inset]]:bg-sidebar\"\n },\n \"rail\": \"absolute inset-y-0 z-20 hidden w-4 -translate-x-1/2 transition-all ease-linear after:absolute after:inset-y-0 after:left-1/2 after:w-[2px] hover:after:bg-muted/80 group-data-[side=left]:-right-4 group-data-[side=right]:left-0 sm:flex [[data-side=left]_&]:cursor-w-resize [[data-side=right]_&]:cursor-e-resize [[data-side=left][data-state=collapsed]_&]:cursor-e-resize [[data-side=right][data-state=collapsed]_&]:cursor-w-resize group-data-[collapsible=offcanvas]:translate-x-0 group-data-[collapsible=offcanvas]:after:left-full group-data-[collapsible=offcanvas]:hover:bg-sidebar [[data-side=left][data-collapsible=offcanvas]_&]:-right-2 [[data-side=right][data-collapsible=offcanvas]_&]:-left-2\",\n \"trigger\": \"p-1 flex items-center border-border justify-center bg-card [&>svg]:text-foreground [&>svg]:size-4 [&>svg]:shrink-0\",\n \"separator\": \"mx-2 w-auto bg-muted\",\n \"content\": \"flex min-h-0 flex-1 flex-col gap-3 overflow-auto group-data-[collapsible=icon]:overflow-hidden px-2 py-3\",\n \"header\": \"flex flex-col gap-2 pt-6 px-6 pb-0\",\n \"footer\": \"flex flex-col gap-2 px-4 py-4\",\n \"input\": \"h-8 w-full bg-background shadow-none focus-visible:ring-2 focus-visible:ring-teal-600\",\n \"inset\": \"relative flex min-h-svh flex-1 flex-col bg-background peer-data-[variant=inset]:min-h-[calc(100svh-theme(spacing.4))] lg:peer-data-[variant=inset]:m-2 lg:peer-data-[state=collapsed]:peer-data-[variant=inset]:ml-2 lg:peer-data-[variant=inset]:ml-0 lg:peer-data-[variant=inset]:rounded-xl lg:peer-data-[variant=inset]:shadow min-h-full relative overflow-hidden\",\n \"group\": {\n \"root\": \"relative flex w-full min-w-0 flex-col px-2 py-3\",\n \"label\": \"duration-200 flex h-8 shrink-0 items-center font-primary rounded-md px-4 text-xs font-normal text-muted-foreground outline-none transition-[margin,opa] ease-linear [&>svg]:text-foreground [&>svg]:size-4 [&>svg]:shrink-0 group-data-[collapsible=icon]:-mt-8 group-data-[collapsible=icon]:opacity-0\",\n \"content\": \"w-full text-sm\",\n \"action\": \"absolute right-3 top-3.5 flex aspect-square w-5 items-center justify-center rounded-md p-0 text-foreground outline-none ring-teal-600 transition-transform hover:bg-muted/80 hover:text-foreground focus-visible:ring-2 [&>svg]:size-4 [&>svg]:shrink-0 after:absolute after:-inset-2 after:lg:hidden group-data-[collapsible=icon]:hidden\"\n },\n \"menu\": {\n \"root\": \"flex w-full min-w-0 flex-col gap-2 py-2 px-2\",\n \"item\": \"group/menu-item relative rounded-md font-primary font-medium\",\n \"badge\": \"absolute right-1 flex h-5 min-w-5 items-center justify-center rounded-md px-1 text-xs font-medium tabular-nums text-foreground select-none pointer-events-none peer-hover/menu-button:text-foreground peer-data-[active=true]/menu-button:text-foreground peer-data-[size=sm]/menu-button:top-1 peer-data-[size=default]/menu-button:top-1.5 peer-data-[size=lg]/menu-button:top-2.5 group-data-[collapsible=icon]:hidden\",\n \"action\": \"absolute right-1 top-1.5 flex aspect-square w-5 items-center justify-center rounded-md p-0 text-foreground outline-none ring-teal-600 transition-transform hover:bg-muted/80 hover:text-foreground focus-visible:ring-2 peer-hover/menu-button:text-foreground after:absolute after:-inset-2 after:lg:hidden peer-data-[size=sm]/menu-button:top-1 peer-data-[size=default]/menu-button:top-1.5 peer-data-[size=lg]/menu-button:top-2.5 group-data-[collapsible=icon]:hidden\",\n \"actionHover\": \"group-focus-within/menu-item:opacity-100 group-hover/menu-item:opacity-100 data-[state=open]:opacity-100 peer-data-[active=true]/menu-button:text-foreground lg:opacity-0\",\n \"skeleton\": {\n \"root\": \"rounded-md h-8 flex gap-2 px-2 items-center\",\n \"icon\": \"size-4 rounded-md\",\n \"text\": \"h-4 flex-1 max-w-[--skeleton-width]\"\n },\n \"button\": {\n \"root\": \"peer/menu-button flex w-full items-center gap-2 overflow-hidden rounded-md py-2 px-3 text-left text-sm outline-none transition-[width,height,padding] focus-visible:ring-2 active:bg-muted/80 active:text-foreground disabled:pointer-events-none disabled:opacity-50 group-has-[[data-sidebar=menu-action]]/menu-item:pr-8 aria-disabled:pointer-events-none aria-disabled:opacity-50 data-[active=true]:bg-muted/80 data-[active=true]:font-medium data-[active=true]:text-foreground data-[state=open]:hover:bg-muted/80 data-[state=open]: group-data-[collapsible=icon]:!size-8 group-data-[collapsible=icon]:!p-2 [&>span:last-child]:truncate [&>svg]:size-4 [&>svg]:shrink-0 font-medium\",\n \"variant\": {\n \"default\": \"items-center gap-2 overflow-hidden rounded-md font-primary font-medium px-2 py-1.5 text-muted-foreground aria-disabled:bg-transparent hover:text-foreground hover:bg-muted/80 aria-expanded:bg-background aria-expanded:text-foreground [&>svg]:aria-expanded:text-foreground aria-disabled:[&>svg]:opacity-50 aria-disabled:opacity-50 [&>svg]:hover:text-foreground [&>svg]:text-muted-foreground data-[active=true]:bg-background [&>svg]:data-[active=true]:text-foreground data-[active=true]:text-foreground\",\n \"outline\": \"bg-background shadow-[0_0_0_1px_hsl(var(--sidebar-border))] hover:bg-muted/80 hover:text-foreground hover:shadow-[0_0_0_1px_hsl(var(--sidebar-accent))]\"\n },\n \"size\": {\n \"default\": \"h-11 text-base\",\n \"sm\": \"h-7 text-xs\",\n \"lg\": \"h-12 text-sm p-0\"\n },\n \"defaultVariants\": {\n \"variant\": \"default\",\n \"size\": \"default\"\n }\n },\n \"sub\": {\n \"list\": \"mx-3.5 flex min-w-0 translate-x-px flex-col gap-1 px-2.5 py-0.5 group-data-[collapsible=icon]:hidden\",\n \"button\": \"flex h-7 min-w-0 -translate-x-px items-center gap-2 overflow-hidden rounded-md font-primary font-medium px-3 py-2 text-muted-foreground aria-disabled:bg-transparent hover:text-foreground hover:bg-muted/80 focus-visible:ring-2 active:bg-background active:text-foreground active:[&>svg]:text-foreground aria-disabled:[&>svg]:opacity-50 aria-disabled:opacity-50 [&>svg]:hover:text-foreground [&>svg]:text-muted-foreground data-[active=true]:bg-background data-[active=true]:text-foreground group-data-[collapsible=icon]:hidden\",\n \"buttonSize\": {\n \"sm\": \"text-xs\",\n \"default\": \"text-base\",\n \"md\": \"text-sm\"\n }\n }\n },\n \"srOnly\": \"sr-only\"\n }\n },\n \"skeleton\": {\n \"root\": \"animate-pulse rounded-md bg-accent\"\n },\n \"spinner\": {\n \"root\": \"animate-spin\",\n \"slots\": {\n \"track\": \"opacity-20\"\n }\n },\n \"switch\": {\n \"root\": \"peer inline-flex h-[1.15rem] w-8 shrink-0 cursor-pointer items-center rounded-full border border-transparent shadow-xs transition-all focus-visible:outline-none focus-visible:ring-[3px] focus-visible:ring-ring/50 disabled:cursor-not-allowed disabled:opacity-50 data-[state=checked]:bg-primary data-[state=unchecked]:bg-input\",\n \"slots\": {\n \"trigger\": \"pointer-events-none block size-4 rounded-full bg-background shadow ring-0 transition-transform data-[state=checked]:translate-x-[calc(100%-2px)] data-[state=unchecked]:translate-x-0\"\n }\n },\n \"table\": {\n \"root\": \"w-full overflow-clip caption-bottom text-sm bg-background rounded-md font-primary text-foreground\",\n \"slots\": {\n \"header\": \"[&_tr]:border-b h-12 bg-background border-border w-full\",\n \"body\": \"[&_tr:last-child]:border-0\",\n \"footer\": \"border-t bg-background font-medium [&>tr]:last:border-b-0\",\n \"row\": \"items-center border-b [&>*:first-child]:pl-4 [&>*:last-child]:pr-4 border-border group transition-colors bg-background data-[state=selected]:bg-muted/80\",\n \"head\": \"px-2 py-[10px] bg-transparent text-left align-middle font-medium text-muted-foreground text-xs\",\n \"cell\": \"truncate px-2 h-12 align-middle [&:has([role=checkbox])]:pr-0 font-medium text-foreground text-sm\",\n \"caption\": \"mt-4 text-sm text-muted-foreground\",\n \"container\": \"w-full\",\n \"empty\": \"flex items-center justify-center py-10\"\n }\n },\n \"tabs\": {\n \"slots\": {\n \"list\": {\n \"root\": \"inline-flex h-9 w-fit gap-1 items-center justify-center rounded-lg p-[3px] font-primary bg-muted text-muted-foreground\",\n \"line\": \"bg-transparent p-0 rounded-none border-border border-none border-b gap-0 h-auto relative\",\n \"indicator\": \"absolute bottom-0 h-[1px] z-10 bg-primary transition-all duration-300 disabled:opacity-50\",\n \"solidActive\": \"absolute transition-all duration-300 disabled:opacity-50 h-8 rounded-md bottom-auto bg-primary left-0 shadow\",\n \"solidRoot\": \"relative\"\n },\n \"trigger\": {\n \"root\": \"gap-1 font-sm leading-snug font-medium inline-flex items-center justify-center whitespace-nowrap bg-transparent transition-all disabled:cursor-not-allowed disabled:opacity-50 disabled:opacity-50\",\n \"solid\": \"font-primary text-sm font-semibold [&>svg]:text-muted-foreground rounded-md px-3 py-1.5 text-muted-foreground data-[state=active]:text-primary-foreground data-[state=active]:[&>svg]:text-primary-foreground z-0\",\n \"line\": \"text-muted-foreground text-base font-semibold px-4 py-2 rounded-none bg-transparent z-0 data-[state=active]:text-primary/90 data-[state=active]:[&>svg]:text-primary/90 [&>svg]:text-muted-foreground border-border border-b font-semibold\"\n },\n \"content\": \"font-primary mt-2 ring-offset-background focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-brand-mid focus-visible:ring-offset-2\"\n }\n },\n \"textarea\": {\n \"root\": \"flex field-sizing-content min-h-16 w-full font-primary rounded-md border border-border bg-transparent px-3 py-2 text-base md:text-sm shadow-xs transition-[color,box-shadow] outline-none placeholder:text-muted-foreground text-foreground focus-visible:border-ring focus-visible:ring-[3px] focus-visible:ring-ring/50 disabled:cursor-not-allowed disabled:opacity-50\",\n \"slots\": {\n \"noResize\": \"resize-none\"\n }\n },\n \"toast\": {\n \"root\": \"lg:max-w-md justify-end flex\",\n \"variant\": {\n \"root\": \"flex w-full font-primary p-4 items-center gap-2 rounded-md border shadow-lg group\",\n \"neutral\": \"bg-muted border-transparent\",\n \"destructive\": \"bg-destructive border-transparent\",\n \"warning\": \"bg-primary border-border\",\n \"success\": \"bg-primary border-border\",\n \"info\": \"bg-primary border-border\"\n },\n \"slots\": {\n \"description\": {\n \"variant\": {\n \"root\": \"leading-4 text-xs font-normal\",\n \"neutral\": \"!text-muted-foreground flex\",\n \"destructive\": \"!text-destructive-foreground\",\n \"warning\": \"!text-muted-foreground\",\n \"success\": \"!text-muted-foreground\",\n \"info\": \"!text-muted-foreground\"\n }\n },\n \"title\": {\n \"variant\": {\n \"root\": \"text-sm leading-4 font-medium\",\n \"neutral\": \"text-foreground\",\n \"destructive\": \"text-destructive-foreground\",\n \"warning\": \"text-primary-foreground\",\n \"success\": \"text-primary-foreground\",\n \"info\": \"text-primary-foreground\"\n }\n },\n \"icon\": {\n \"variant\": {\n \"neutral\": \"text-foreground\",\n \"destructive\": \"text-destructive-foreground\",\n \"warning\": \"text-primary-foreground\",\n \"success\": \"text-primary-foreground\",\n \"info\": \"text-primary-foreground\"\n }\n },\n \"content\": \"flex gap-1 items-start flex-col flex-1\",\n \"toaster\": \"toaster group\"\n }\n },\n \"tooltip\": {\n \"slots\": {\n \"content\": \"z-30 w-fit overflow-hidden rounded-md font-normal font-primary bg-foreground px-3 py-1.5 text-xs text-balance text-background animate-in fade-in-0 zoom-in-95 data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=closed]:zoom-out-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2\"\n }\n },\n \"avatarGroup\": {\n \"root\": \"flex flex-row relative h-10 w-full font-primary\",\n \"slots\": {\n \"avatar\": \"relative -ml-2 first:ml-0\"\n }\n },\n \"breadcrumb\": {\n \"root\": \"\",\n \"icons\": {\n \"separator\": \"ChevronRight\",\n \"ellipsis\": \"MoreHorizontal\"\n },\n \"slots\": {\n \"list\": \"flex flex-wrap items-center gap-1.5 text-sm break-words text-foreground sm:gap-2.5\",\n \"item\": \"inline-flex items-center gap-1.5\",\n \"link\": \"transition-colors hover:text-foreground\",\n \"page\": \"font-normal text-foreground\",\n \"separator\": \"[&>svg]:size-3.5\",\n \"ellipsis\": \"flex size-9 items-center justify-center\",\n \"icon\": \"size-4\",\n \"srOnly\": \"sr-only\"\n }\n },\n \"dateSlider\": {\n \"root\": \"p-3 rounded-md font-primary\",\n \"slots\": {\n \"caption\": {\n \"root\": \"flex justify-center pt-1 relative items-center\",\n \"label\": \"text-sm text-foreground leading-snug font-medium\"\n },\n \"months\": \"flex flex-col sm:flex-row space-y-4 sm:space-x-4 sm:space-y-0\",\n \"month\": \"space-y-4\",\n \"nav\": {\n \"root\": \"space-x-1 flex items-center\",\n \"button\": {\n \"next\": {\n \"root\": \"absolute right-1\",\n \"props\": {\n \"iconSize\": {\n \"else\": \"4\",\n \"ghost\": \"6\"\n },\n \"defaultVariant\": \"ghostmain\"\n }\n },\n \"root\": \"h-7 w-7 bg-transparent p-0 opacity-50 hover:opacity-100\",\n \"iconSize\": \"w-7 h-7\",\n \"previous\": {\n \"root\": \"absolute left-1\",\n \"props\": {\n \"iconSize\": {\n \"else\": \"4\",\n \"ghost\": \"6\"\n },\n \"defaultVariant\": \"ghostmain\"\n }\n }\n }\n },\n \"row\": \"flex w-full mt-2 cursor-not-allowed\",\n \"table\": \"w-full border-collapse space-y-1\",\n \"head\": {\n \"row\": \"flex\",\n \"cell\": \"text-muted-foreground leading-snug w-9 font-normal text-sm\"\n },\n \"cell\": \"text-center text-sm p-0 relative\",\n \"day\": {\n \"root\": \"h-9 w-9 p-0 font-normal text-foreground aria-selected:opacity-100 inline-flex items-center justify-center rounded-md text-sm font-medium transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-brand-mid focus-visible:ring-offset-2 disabled:opacity-50 disabled:pointer-events-none ring-offset-background hover:bg-muted/80 aria-selected:hover:bg-primary/90\",\n \"range\": {\n \"end\": \"day-range-end\",\n \"middle\": \"aria-selected:bg-muted/80 aria-selected:text-foreground aria-selected:hover:bg-muted/80\"\n },\n \"selected\": \"bg-primary text-primary-foreground hover:bg-primary/90 hover:text-primary-foreground focus:bg-primary focus:text-primary-foreground\",\n \"today\": \"bg-primary text-primary-foreground aria-selected:bg-primary/90 aria-selected:text-primary-foreground aria-selected:hover:bg-primary/90 aria-selected:focus:bg-primary/90\",\n \"outside\": \"opacity-50 opacity-50 aria-selected:text-foreground day-outside aria-selected:bg-muted/80 aria-selected:hover:bg-muted/80 aria-selected:hover:text-foreground aria-selected:focus:bg-muted/80 aria-selected:focus:text-foreground\",\n \"disabled\": \"text-foreground opacity-50\",\n \"hidden\": \"invisible\"\n },\n \"customRootSlider\": \"w-full\",\n \"header\": \"flex justify-center pt-1 relative items-center\",\n \"selectContent\": \"z-50\",\n \"buttons\": {\n \"props\": {\n \"variant\": \"ghost\"\n }\n },\n \"dialog\": {\n \"false\": \"hidden\",\n \"content\": \"grid gap-4\",\n \"body\": \"grid gap-4\",\n \"range\": \"grid gap-4\"\n }\n }\n },\n \"dayIndicator\": {\n \"root\": \"relative w-full min-w-10 h-10 rounded-[10px] shadow-sm flex items-center justify-center overflow-hidden\",\n \"variant\": {\n \"anomaly\": {\n \"bg\": \"bg-[var(--extra-six-subtle)]\",\n \"text\": \"text-primary\"\n },\n \"extra-one\": {\n \"bg\": \"bg-[var(--extra-one-subtle)]\",\n \"text\": \"text-[var(--extra-one-mid)]\",\n \"striped\": \"subtle-one\"\n },\n \"extra-six\": {\n \"bg\": \"bg-[var(--extra-six-subtle)]\",\n \"text\": \"text-[var(--extra-six-strong)]\",\n \"striped\": \"subtle-six\"\n },\n \"extra-two\": {\n \"bg\": \"bg-[var(--extra-two-subtle)]\",\n \"text\": \"text-[var(--extra-two-mid)]\",\n \"striped\": \"subtle-two\"\n },\n \"extra-five\": {\n \"bg\": \"bg-[var(--extra-five-subtle)]\",\n \"text\": \"text-[var(--extra-five-mid)]\",\n \"striped\": \"subtle-five\"\n },\n \"extra-four\": {\n \"bg\": \"bg-[var(--extra-four-subtle)]\",\n \"text\": \"text-[var(--extra-four-mid)]\",\n \"striped\": \"subtle-four\"\n },\n \"extra-three\": {\n \"bg\": \"bg-[var(--extra-three-subtle)]\",\n \"text\": \"text-[var(--extra-three-mid)]\",\n \"striped\": \"subtle-three\"\n },\n \"extra-seven-strong\": {\n \"bg\": \"bg-[var(--extra-seven-strong)]\",\n \"text\": \"text-[var(--extra-seven-subtle)]\"\n },\n \"extra-seven-subtle\": {\n \"bg\": \"bg-[var(--extra-seven-subtle)]\",\n \"text\": \"text-[var(--extra-seven-mid)]\"\n }\n },\n \"slots\": {\n \"bg\": {\n \"full\": \"absolute inset-0\",\n \"layer\": \"bg-accent\",\n \"halfTop\": \"absolute top-0 left-0 right-0 h-1/2\",\n \"halfBottom\": \"absolute bottom-0 left-0 right-0 h-1/2\"\n },\n \"border\": \"border border-border\",\n \"number\": \"relative z-[5] text-base font-primary\",\n \"default\": \"extra-six\",\n \"outline\": {\n \"info\": \"border-border\",\n \"main\": \"border-border\",\n \"brand\": \"border-primary\",\n \"success\": \"border-border\",\n \"warning\": \"border-border\",\n \"destructive\": \"border-destructive\"\n },\n \"iconBadge\": {\n \"bg\": {\n \"info\": \"bg-primary\",\n \"main\": \"bg-accent\",\n \"brand\": \"bg-primary\",\n \"success\": \"bg-primary\",\n \"warning\": \"bg-primary\",\n \"destructive\": \"bg-destructive\"\n },\n \"icon\": \"text-white h-[14px] w-[14px]\",\n \"border\": \"border-border\",\n \"container\": \"absolute top-0 right-0 z-[2] flex items-center justify-center bg-primary rounded-bl-[5px] h-[14px] w-[14px]\"\n },\n \"topBorder\": \"absolute top-0 left-0 right-0 h-1 bg-destructive z-[3]\",\n \"bottomBorder\": \"absolute bottom-0 left-0 right-0 h-1 bg-primary z-[3]\"\n }\n },\n \"inputNumber\": {\n \"root\": \"font-primary focus:placeholder:text-muted-foreground w-full text-foreground file:disabled:placeholder:opacity-50 gap-x-2 file:disabled:opacity-50 file:disabled:opacity-50 file:disabled:opacity-50 leading-relaxed font-medium font-primary text-sm disabled:opacity-100 h-10 file:h-full gap-x-2 px-3 py-2 bg-background border-border placeholder:text-muted-foreground rounded-md focus:ring border focus:ring-blue-600 focus:ring-2 focus:ring-offset-1 focus:bg-muted focus-visible:outline-none focus:border-border focus:text-foreground disabled:opacity-50 disabled:border-border file:border-0 disabled:placeholder:opacity-50 disabled:opacity-50 disabled:opacity-50 file:bg-transparent file:border-border file:placeholder:text-muted-foreground file:text-foreground disabled:cursor-not-allowed [&::-webkit-search-cancel-button]:hidden [&::-webkit-search-decoration]:hidden shadow-sm\",\n \"slots\": {\n \"file\": \"text-muted-foreground\",\n \"container\": \"relative w-full text-foreground\",\n \"prefixIcon\": {\n \"root\": \"absolute left-3 top-1/2 transform -translate-y-1/2 disabled:opacity-100 disabled:cursor-not-allowed\",\n \"props\": {\n \"size\": \"4\"\n }\n },\n \"prefix\": \"absolute left-3 top-1/2 transform -translate-y-1/2 font-medium text-sm font-primary disabled:opacity-100 disabled:opacity-50 disabled:opacity-50 disabled:cursor-not-allowed\",\n \"prefixSlot\": \"absolute left-3 top-1/2 transform -translate-y-1/2 disabled:opacity-100 disabled:opacity-50 disabled:opacity-50 disabled:cursor-not-allowed\",\n \"suffixIcon\": {\n \"root\": \"absolute right-3 top-1/2 transform -translate-y-1/2 disabled:opacity-100 disabled:cursor-not-allowed\",\n \"props\": {\n \"size\": \"4\"\n }\n },\n \"suffix\": \"absolute right-3 top-1/2 transform -translate-y-1/2 font-medium text-sm font-primary disabled:opacity-100 disabled:opacity-50 disabled:opacity-50 disabled:cursor-not-allowed\",\n \"suffixSlot\": \"absolute right-3 top-1/2 transform -translate-y-1/2 disabled:opacity-100 disabled:opacity-50 disabled:opacity-50 disabled:cursor-not-allowed\",\n \"clearable\": {\n \"root\": \"absolute right-3 top-1/2 transform -translate-y-1/2 disabled:opacity-100 disabled:cursor-not-allowed cursor-pointer w-5 h-5 text-primary hover:text-primary/90 active:text-primary/90 p-0 hover:bg-transparent active:bg-transparent\",\n \"props\": {\n \"size\": \"default\"\n }\n },\n \"passwordIcon\": \"absolute right-3 cursor-pointer top-1/2 transform -translate-y-1/2 font-medium text-sm font-primary disabled:opacity-100 disabled:opacity-50 disabled:opacity-50 disabled:cursor-not-allowed\",\n \"clearableIconSuffix\": \"right-12\",\n \"textCenter\": \"text-center\"\n }\n },\n \"resizable\": {\n \"root\": \"flex\",\n \"slots\": {\n \"panel\": \"relative\",\n \"handle\": \"bg-border focus-visible:ring-ring relative flex w-px items-center justify-center\"\n }\n },\n \"stepper\": {\n \"root\": \"block w-full\",\n \"slots\": {\n \"nav\": \"group/stepper-nav inline-flex data-[orientation=horizontal]:w-full data-[orientation=horizontal]:flex-row data-[orientation=vertical]:flex-col\",\n \"item\": \"group/step flex items-center justify-center not-last:flex-1 data-[disabled]:pointer-events-none data-[disabled]:opacity-60 group-data-[orientation=horizontal]/stepper-nav:flex-row group-data-[orientation=vertical]/stepper-nav:flex-col\",\n \"trigger\": \"focus-visible:border-ring focus-visible:ring-ring/50 inline-flex cursor-pointer items-center gap-2.5 rounded-full outline-none focus-visible:z-10 focus-visible:ring-3 disabled:pointer-events-none disabled:opacity-60\",\n \"indicator\": \"border-background bg-muted text-foreground data-[state=completed]:bg-primary data-[state=completed]:text-primary-foreground data-[state=active]:bg-primary data-[state=active]:text-primary-foreground relative flex size-6 shrink-0 items-center justify-center overflow-hidden rounded-full text-xs\",\n \"separator\": \"bg-muted group-data-[state=completed]/step:bg-primary data-[state=completed]:bg-primary m-0.5 rounded-sm group-data-[orientation=horizontal]/stepper-nav:h-0.5 group-data-[orientation=horizontal]/stepper-nav:flex-1 group-data-[orientation=vertical]/stepper-nav:h-12 group-data-[orientation=vertical]/stepper-nav:w-0.5\",\n \"title\": \"text-sm leading-none font-medium text-foreground\",\n \"description\": \"text-sm text-muted-foreground\",\n \"panel\": \"w-full\",\n \"content\": \"w-full\"\n }\n },\n \"tabBar\": {\n \"root\": \"pb-safe-bottom w-full justify-center border-t border-border z-20 bg-card items-center absolute bottom-0 left-1/2 transform -translate-x-1/2 flex\",\n \"variant\": {\n \"compact\": \"py-4 px-4\",\n \"relaxed\": \"px-6 py-6\"\n },\n \"slots\": {\n \"content\": \"gap-3 lg:gap-8 flex flex-row w-full\"\n },\n \"props\": {\n \"maxWidth\": \"max-w-2xl\",\n \"align\": {\n \"start\": \"justify-start\",\n \"end\": \"justify-end\",\n \"center\": \"justify-center\",\n \"justify\": \"justify-between\",\n \"stretch\": \"[&>*]:flex-1\"\n }\n }\n },\n \"timePicker\": {\n \"slots\": {\n \"trigger\": \"w-full\",\n \"input\": \"w-full\",\n \"wrapper\": \"grid gap-4\",\n \"popover\": {\n \"content\": \"w-auto p-4\"\n },\n \"select\": {\n \"root\": \"grid gap-2\",\n \"label\": \"text-sm font-medium text-foreground\",\n \"container\": \"flex flex-col gap-2\",\n \"content\": \"max-h-48 overflow-y-auto\"\n }\n }\n },\n \"toggle\": {\n \"root\": \"inline-flex items-center justify-center rounded-md text-sm font-medium hover:bg-accent hover:text-accent-foreground\",\n \"size\": {\n \"default\": \"h-9 px-3\",\n \"sm\": \"h-8 px-2\",\n \"lg\": \"h-10 px-4\"\n },\n \"variant\": {\n \"default\": \"bg-transparent\",\n \"outline\": \"border border-input bg-transparent\"\n }\n },\n \"slider\": {\n \"root\": \"relative flex w-full touch-none items-center select-none data-[disabled]:opacity-50 data-[orientation=vertical]:h-full data-[orientation=vertical]:min-h-44 data-[orientation=vertical]:w-auto data-[orientation=vertical]:flex-col\",\n \"slots\": {\n \"track\": \"relative grow overflow-hidden rounded-full bg-muted data-[orientation=horizontal]:h-1.5 data-[orientation=horizontal]:w-full data-[orientation=vertical]:h-full data-[orientation=vertical]:w-1.5\",\n \"range\": \"absolute bg-primary data-[orientation=horizontal]:h-full data-[orientation=vertical]:w-full\",\n \"thumb\": \"block size-4 shrink-0 rounded-full border border-primary bg-white shadow-sm ring-brand-mid/50 transition-[color,box-shadow] hover:ring-4 focus-visible:ring-4 focus-visible:outline-hidden disabled:pointer-events-none disabled:opacity-50\"\n }\n },\n \"pagination\": {\n \"root\": \"mx-auto flex w-full justify-center\",\n \"icons\": {\n \"previous\": \"ChevronLeft\",\n \"next\": \"ChevronRight\",\n \"ellipsis\": \"MoreHorizontal\"\n },\n \"slots\": {\n \"content\": \"flex flex-row items-center gap-1\",\n \"previous\": \"gap-1 px-2.5 sm:pl-2.5\",\n \"next\": \"gap-1 px-2.5 sm:pr-2.5\",\n \"ellipsis\": \"flex size-9 items-center justify-center\",\n \"icon\": \"size-4\",\n \"label\": \"hidden sm:block\",\n \"srOnly\": \"sr-only\"\n }\n },\n \"scrollarea\": {\n \"root\": \"relative\",\n \"slots\": {\n \"viewport\": \"size-full rounded-[inherit] transition-[color,box-shadow] outline-none focus-visible:ring-[3px] focus-visible:ring-brand-mid/50 focus-visible:outline-1\",\n \"scrollbar\": \"flex touch-none p-px transition-colors select-none\",\n \"vertical\": \"h-full w-2.5 border-l border-l-transparent\",\n \"horizontal\": \"h-2.5 flex-col border-t border-t-transparent\",\n \"thumb\": \"relative flex-1 rounded-full bg-muted\"\n }\n },\n \"hovercard\": {\n \"root\": \"\",\n \"slots\": {\n \"content\": \"z-50 w-64 origin-(--radix-hover-card-content-transform-origin) rounded-md border bg-popover p-4 text-foreground shadow-md outline-hidden data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=closed]:zoom-out-95 data-[state=open]:animate-in data-[state=open]:fade-in-0 data-[state=open]:zoom-in-95\"\n }\n },\n \"contextmenu\": {\n \"root\": \"\",\n \"icons\": {\n \"submenu\": \"ChevronRight\",\n \"check\": \"Check\",\n \"radio\": \"Circle\"\n },\n \"slots\": {\n \"subTrigger\": \"flex cursor-default items-center rounded-sm px-2 py-1.5 text-sm outline-hidden select-none focus:bg-muted focus:text-foreground data-[inset]:pl-8 data-[state=open]:bg-muted data-[state=open]:text-foreground [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*=size-])]:size-4 [&_svg:not([class*=text-])]:text-foreground\",\n \"subContent\": \"z-50 min-w-[8rem] origin-(--radix-context-menu-content-transform-origin) overflow-hidden rounded-md border bg-popover p-1 text-foreground shadow-lg data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=closed]:zoom-out-95 data-[state=open]:animate-in data-[state=open]:fade-in-0 data-[state=open]:zoom-in-95\",\n \"content\": \"z-50 max-h-(--radix-context-menu-content-available-height) min-w-[8rem] origin-(--radix-context-menu-content-transform-origin) overflow-x-hidden overflow-y-auto rounded-md border bg-popover p-1 text-foreground shadow-md data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=closed]:zoom-out-95 data-[state=open]:animate-in data-[state=open]:fade-in-0 data-[state=open]:zoom-in-95\",\n \"item\": \"relative flex cursor-default items-center gap-2 rounded-sm px-2 py-1.5 text-sm outline-hidden select-none focus:bg-muted focus:text-foreground data-[disabled]:pointer-events-none data-[disabled]:opacity-50 data-[inset]:pl-8 data-[variant=destructive]:text-destructive data-[variant=destructive]:focus:bg-destructive/10 data-[variant=destructive]:focus:text-destructive dark:data-[variant=destructive]:focus:bg-destructive/20 [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*=size-])]:size-4 [&_svg:not([class*=text-])]:text-foreground data-[variant=destructive]:*:[svg]:text-negative-mid!\",\n \"checkboxItem\": \"relative flex cursor-default items-center gap-2 rounded-sm py-1.5 pr-2 pl-8 text-sm outline-hidden select-none focus:bg-muted focus:text-foreground data-[disabled]:pointer-events-none data-[disabled]:opacity-50 [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*=size-])]:size-4\",\n \"radioItem\": \"relative flex cursor-default items-center gap-2 rounded-sm py-1.5 pr-2 pl-8 text-sm outline-hidden select-none focus:bg-muted focus:text-foreground data-[disabled]:pointer-events-none data-[disabled]:opacity-50 [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*=size-])]:size-4\",\n \"indicator\": \"pointer-events-none absolute left-2 flex size-3.5 items-center justify-center\",\n \"label\": \"px-2 py-1.5 text-sm font-medium text-foreground data-[inset]:pl-8\",\n \"separator\": \"-mx-1 my-1 h-px bg-muted\",\n \"shortcut\": \"ml-auto text-xs tracking-widest text-foreground\",\n \"icon\": \"ml-auto\",\n \"checkIcon\": \"size-4\",\n \"circleIcon\": \"size-2 fill-current\"\n }\n },\n \"menubar\": {\n \"root\": \"flex h-9 items-center gap-1 rounded-md border bg-background p-1 shadow-xs\",\n \"icons\": {\n \"submenu\": \"ChevronRight\",\n \"check\": \"Check\",\n \"radio\": \"Circle\"\n },\n \"slots\": {\n \"trigger\": \"flex items-center rounded-sm px-2 py-1 text-sm font-medium outline-hidden select-none focus:bg-muted focus:text-foreground data-[state=open]:bg-muted data-[state=open]:text-foreground\",\n \"content\": \"z-50 min-w-[12rem] origin-(--radix-menubar-content-transform-origin) overflow-hidden rounded-md border bg-popover p-1 text-foreground shadow-md data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 data-[state=closed]:fade-out-0 data-[state=closed]:zoom-out-95 data-[state=open]:animate-in data-[state=open]:fade-in-0 data-[state=open]:zoom-in-95\",\n \"item\": \"relative flex cursor-default items-center gap-2 rounded-sm px-2 py-1.5 text-sm outline-hidden select-none focus:bg-muted focus:text-foreground data-[disabled]:pointer-events-none data-[disabled]:opacity-50 data-[inset]:pl-8 data-[variant=destructive]:text-destructive data-[variant=destructive]:focus:bg-destructive/10 data-[variant=destructive]:focus:text-destructive dark:data-[variant=destructive]:focus:bg-destructive/20 [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*=size-])]:size-4 [&_svg:not([class*=text-])]:text-foreground data-[variant=destructive]:*:[svg]:text-negative-mid!\",\n \"checkboxItem\": \"relative flex cursor-default items-center gap-2 rounded-xs py-1.5 pr-2 pl-8 text-sm outline-hidden select-none focus:bg-muted focus:text-foreground data-[disabled]:pointer-events-none data-[disabled]:opacity-50 [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*=size-])]:size-4\",\n \"radioItem\": \"relative flex cursor-default items-center gap-2 rounded-xs py-1.5 pr-2 pl-8 text-sm outline-hidden select-none focus:bg-muted focus:text-foreground data-[disabled]:pointer-events-none data-[disabled]:opacity-50 [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*=size-])]:size-4\",\n \"subTrigger\": \"flex cursor-default items-center rounded-sm px-2 py-1.5 text-sm outline-hidden select-none focus:bg-muted focus:text-foreground data-[inset]:pl-8 data-[state=open]:bg-muted data-[state=open]:text-foreground\",\n \"subContent\": \"z-50 min-w-[8rem] origin-(--radix-menubar-content-transform-origin) overflow-hidden rounded-md border bg-popover p-1 text-foreground shadow-lg data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=closed]:zoom-out-95 data-[state=open]:animate-in data-[state=open]:fade-in-0 data-[state=open]:zoom-in-95\",\n \"indicator\": \"pointer-events-none absolute left-2 flex size-3.5 items-center justify-center\",\n \"label\": \"px-2 py-1.5 text-sm font-medium data-[inset]:pl-8\",\n \"separator\": \"-mx-1 my-1 h-px bg-muted\",\n \"shortcut\": \"ml-auto text-xs tracking-widest text-foreground\",\n \"icon\": \"ml-auto\",\n \"checkIcon\": \"size-4\",\n \"circleIcon\": \"size-2 fill-current\"\n }\n },\n \"navigationmenu\": {\n \"root\": \"group/navigation-menu relative flex max-w-max flex-1 items-center justify-center\",\n \"icons\": {\n \"trigger\": \"ChevronDown\"\n },\n \"slots\": {\n \"list\": \"group flex flex-1 list-none items-center justify-center gap-1\",\n \"trigger\": \"group inline-flex h-9 w-max items-center justify-center rounded-md bg-background px-4 py-2 text-sm font-medium hover:bg-muted/80 hover:text-foreground focus:bg-muted focus:text-foreground disabled:pointer-events-none disabled:opacity-50 data-[state=open]:hover:bg-muted/80 data-[state=open]:text-foreground data-[state=open]:focus:bg-muted data-[state=open]:bg-muted/50 focus-visible:ring-brand-mid/50 outline-none transition-[color,box-shadow] focus-visible:ring-[3px] focus-visible:outline-1\",\n \"triggerIcon\": \"relative top-[1px] ml-1 size-3 transition duration-300 group-data-[state=open]:rotate-180\",\n \"content\": \"data-[motion^=from-]:animate-in data-[motion^=to-]:animate-out data-[motion^=from-]:fade-in data-[motion^=to-]:fade-out data-[motion=from-end]:slide-in-from-right-52 data-[motion=from-start]:slide-in-from-left-52 data-[motion=to-end]:slide-out-to-right-52 data-[motion=to-start]:slide-out-to-left-52 top-0 left-0 w-full p-2 pr-2.5 md:absolute md:w-auto\",\n \"link\": \"data-[active=true]:focus:bg-muted/80 data-[active=true]:hover:bg-muted/80 data-[active=true]:bg-muted/50 data-[active=true]:text-foreground hover:bg-muted/80 hover:text-foreground focus:bg-muted focus:text-foreground focus-visible:ring-brand-mid/50 [&_svg:not([class*=text-])]:text-foreground flex flex-col gap-1 rounded-sm p-2 text-sm transition-all outline-none focus-visible:ring-[3px] focus-visible:outline-1 [&_svg:not([class*=size-])]:size-4\",\n \"viewportWrapper\": \"absolute top-full left-0 isolate z-50 flex justify-center\",\n \"viewport\": \"origin-top-center bg-popover text-foreground data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-90 relative mt-1.5 h-(--radix-navigation-menu-viewport-height) w-full overflow-hidden rounded-md border shadow md:w-(--radix-navigation-menu-viewport-width)\",\n \"indicator\": \"data-[state=visible]:animate-in data-[state=hidden]:animate-out data-[state=hidden]:fade-out data-[state=visible]:fade-in top-full z-1 flex h-1.5 items-end justify-center overflow-hidden\",\n \"indicatorInner\": \"bg-muted relative top-[60%] h-2 w-2 rotate-45 rounded-tl-sm shadow-md\"\n }\n },\n \"carousel\": {\n \"root\": \"relative\",\n \"icons\": {\n \"previous\": \"ArrowLeft\",\n \"next\": \"ArrowRight\"\n },\n \"slots\": {\n \"viewport\": \"overflow-hidden\",\n \"content\": \"flex\",\n \"contentHorizontal\": \"-ml-4\",\n \"contentVertical\": \"-mt-4 flex-col\",\n \"item\": \"min-w-0 shrink-0 grow-0 basis-full\",\n \"itemHorizontal\": \"pl-4\",\n \"itemVertical\": \"pt-4\",\n \"button\": \"absolute size-8 rounded-full\",\n \"previousHorizontal\": \"top-1/2 -left-12 -translate-y-1/2\",\n \"previousVertical\": \"-top-12 left-1/2 -translate-x-1/2 rotate-90\",\n \"nextHorizontal\": \"top-1/2 -right-12 -translate-y-1/2\",\n \"nextVertical\": \"-bottom-12 left-1/2 -translate-x-1/2 rotate-90\",\n \"srOnly\": \"sr-only\"\n }\n },\n \"aspectratio\": {\n \"root\": \"\"\n },\n \"togglegroup\": {\n \"root\": \"group/toggle-group flex w-fit items-center rounded-md data-[variant=outline]:shadow-xs\",\n \"slots\": {\n \"item\": \"min-w-0 flex-1 shrink-0 rounded-none shadow-none first:rounded-l-md last:rounded-r-md focus:z-10 focus-visible:z-10 data-[variant=outline]:border-l-0 data-[variant=outline]:first:border-l\"\n }\n },\n \"buttongroup\": {\n \"root\": \"flex w-fit items-stretch has-[>[data-slot=button-group]]:gap-2 [&>*]:focus-visible:relative [&>*]:focus-visible:z-10 has-[select[aria-hidden=true]:last-child]:[&>[data-slot=select-trigger]:last-of-type]:rounded-r-md [&>[data-slot=select-trigger]:not([class*=w-])]:w-fit [&>input]:flex-1\",\n \"slots\": {\n \"horizontal\": \"[&>*:not(:first-child)]:rounded-l-none [&>*:not(:first-child)]:border-l-0 [&>*:not(:last-child)]:rounded-r-none\",\n \"vertical\": \"flex-col [&>*:not(:first-child)]:rounded-t-none [&>*:not(:first-child)]:border-t-0 [&>*:not(:last-child)]:rounded-b-none\",\n \"text\": \"flex items-center gap-2 rounded-md border border-border bg-muted px-4 text-sm font-medium text-foreground shadow-xs [&_svg]:pointer-events-none [&_svg:not([class*=size-])]:size-4\",\n \"item\": \"flex items-center gap-2 rounded-md border border-border bg-muted px-4 text-sm font-medium text-foreground shadow-xs [&_svg]:pointer-events-none [&_svg:not([class*=size-])]:size-4\",\n \"separator\": \"relative m-0! self-stretch bg-muted data-[orientation=vertical]:h-auto\"\n }\n },\n \"inputgroup\": {\n \"root\": \"group/input-group relative flex w-full items-center rounded-md border border-border bg-background shadow-xs transition-[color,box-shadow] outline-none h-9 min-w-0 has-[>textarea]:h-auto has-[>[data-align=inline-start]]:[&>input]:pl-2 has-[>[data-align=inline-end]]:[&>input]:pr-2 has-[>[data-align=block-start]]:h-auto has-[>[data-align=block-start]]:flex-col has-[>[data-align=block-start]]:[&>input]:pb-3 has-[>[data-align=block-end]]:h-auto has-[>[data-align=block-end]]:flex-col has-[>[data-align=block-end]]:[&>input]:pt-3 has-[[data-slot=input-group-control]:focus-visible]:border-primary has-[[data-slot=input-group-control]:focus-visible]:ring-3 has-[[data-slot=input-group-control]:focus-visible]:ring-interactive-mid/50 has-[[data-slot][aria-invalid=true]]:border-destructive has-[[data-slot][aria-invalid=true]]:ring-3 has-[[data-slot][aria-invalid=true]]:ring-negative-mid/20 has-disabled:opacity-50 has-disabled:opacity-50\",\n \"slots\": {\n \"addon\": {\n \"root\": \"flex h-auto cursor-text items-center justify-center gap-2 py-1.5 text-sm font-medium text-foreground select-none group-data-[disabled=true]/input-group:opacity-50 [&>kbd]:rounded-[calc(var(--radius)-5px)] [&>svg]:pointer-events-none [&>svg:not([class*=size-])]:size-4 [&>svg:not([class*=text-])]:text-muted-foreground\",\n \"align\": {\n \"inline-start\": \"order-first pl-3 has-[>button]:ml-[-0.45rem] has-[>kbd]:ml-[-0.35rem]\",\n \"inline-end\": \"order-last pr-3 has-[>button]:mr-[-0.45rem] has-[>kbd]:mr-[-0.35rem]\",\n \"block-start\": \"order-first w-full justify-start px-3 pt-3 group-has-[>input]/input-group:pt-2.5 [.border-b]:pb-3\",\n \"block-end\": \"order-last w-full justify-start px-3 pb-3 group-has-[>input]/input-group:pb-2.5 [.border-t]:pt-3\"\n }\n },\n \"button\": {\n \"root\": \"flex items-center gap-2 text-sm shadow-none\",\n \"size\": {\n \"xs\": \"h-6 gap-1 rounded-[calc(var(--radius)-5px)] px-2 has-[>svg]:px-2 [&>svg:not([class*=size-])]:size-3.5\",\n \"sm\": \"h-8 gap-1.5 rounded-md px-2.5 has-[>svg]:px-2.5\",\n \"icon-xs\": \"size-6 rounded-[calc(var(--radius)-5px)] p-0 has-[>svg]:p-0\",\n \"icon-sm\": \"size-8 p-0 has-[>svg]:p-0\"\n }\n },\n \"text\": \"flex items-center gap-2 text-sm text-foreground [&_svg]:pointer-events-none [&_svg:not([class*=size-])]:size-4 [&_svg:not([class*=text-])]:text-muted-foreground\",\n \"input\": \"flex h-full min-w-0 flex-1 rounded-none border-0 bg-transparent px-3 py-1 text-sm text-foreground placeholder:text-muted-foreground shadow-none outline-none ring-0 focus-visible:ring-0 disabled:cursor-not-allowed disabled:opacity-50 disabled:bg-transparent aria-invalid:ring-0\",\n \"textarea\": \"flex min-h-16 w-full flex-1 resize-none rounded-none border-0 bg-transparent px-3 py-3 text-sm text-foreground placeholder:text-muted-foreground shadow-none outline-none ring-0 focus-visible:ring-0 disabled:cursor-not-allowed disabled:opacity-50 disabled:bg-transparent aria-invalid:ring-0\"\n }\n },\n \"field\": {\n \"root\": \"group/field flex w-full gap-3 data-[invalid=true]:text-destructive\",\n \"slots\": {\n \"fieldset\": \"flex flex-col gap-6 has-[>[data-slot=checkbox-group]]:gap-3 has-[>[data-slot=radio-group]]:gap-3\",\n \"legend\": \"mb-3 font-medium data-[variant=legend]:text-base data-[variant=label]:text-sm\",\n \"group\": \"group/field-group @container/field-group flex w-full flex-col gap-7 data-[slot=checkbox-group]:gap-3 [&>[data-slot=field-group]]:gap-4\",\n \"vertical\": \"flex-col [&>*]:w-full [&>.sr-only]:w-auto\",\n \"horizontal\": \"flex-row items-center [&>[data-slot=field-label]]:flex-auto\",\n \"responsive\": \"flex-col @md/field-group:flex-row @md/field-group:items-center [&>*]:w-full @md/field-group:[&>*]:w-auto [&>.sr-only]:w-auto\",\n \"content\": \"group/field-content flex flex-1 flex-col gap-1.5 leading-snug\",\n \"label\": \"group/field-label peer/field-label flex w-fit gap-2 leading-snug group-data-[disabled=true]/field:opacity-50 has-[>[data-slot=field]]:w-full has-[>[data-slot=field]]:flex-col has-[>[data-slot=field]]:rounded-md has-[>[data-slot=field]]:border [&>*]:data-[slot=field]:p-4 has-data-[state=checked]:border-primary/80 has-data-[state=checked]:bg-primary/5 dark:has-data-[state=checked]:bg-primary/10\",\n \"title\": \"flex w-fit items-center gap-2 text-sm leading-snug font-medium group-data-[disabled=true]/field:opacity-50\",\n \"description\": \"text-sm leading-normal font-normal text-foreground group-has-[[data-orientation=horizontal]]/field:text-balance last:mt-0 nth-last-2:-mt-1 [[data-variant=legend]+&]:-mt-1.5 [&>a]:underline [&>a]:underline-offset-4 [&>a:hover]:text-primary/90\",\n \"separator\": \"relative -my-2 h-5 text-sm group-data-[variant=outline]/field-group:-mb-2\",\n \"separatorLine\": \"absolute inset-0 top-1/2\",\n \"separatorContent\": \"relative mx-auto block w-fit bg-background px-2 text-foreground\",\n \"error\": \"text-destructive text-sm font-normal\",\n \"errorList\": \"ml-4 flex list-disc flex-col gap-1\"\n }\n },\n \"empty\": {\n \"root\": \"flex min-w-0 flex-1 flex-col items-center justify-center gap-6 rounded-lg border-dashed p-6 text-center text-balance md:p-12\",\n \"slots\": {\n \"header\": \"flex max-w-sm flex-col items-center gap-2 text-center\",\n \"media\": \"mb-2 flex shrink-0 items-center justify-center [&_svg]:pointer-events-none [&_svg]:shrink-0\",\n \"mediaDefault\": \"bg-transparent\",\n \"mediaIcon\": \"flex size-10 shrink-0 items-center justify-center rounded-lg bg-muted text-foreground [&_svg:not([class*=size-])]:size-6\",\n \"title\": \"text-lg font-medium tracking-tight\",\n \"description\": \"text-sm/relaxed text-foreground [&>a]:underline [&>a]:underline-offset-4 [&>a:hover]:text-primary/90\",\n \"content\": \"flex w-full max-w-sm min-w-0 flex-col items-center gap-4 text-sm text-balance\"\n }\n },\n \"item\": {\n \"root\": \"group/item flex flex-wrap items-center rounded-md border border-transparent text-sm transition-colors duration-100 outline-none focus-visible:border-primary focus-visible:ring-[3px] focus-visible:ring-brand-mid/50 [a]:transition-colors [a]:hover:bg-muted/50\",\n \"slots\": {\n \"group\": \"group/item-group flex flex-col\",\n \"separator\": \"my-0\",\n \"variantDefault\": \"bg-transparent\",\n \"variantOutline\": \"border-border\",\n \"variantMuted\": \"bg-muted/50\",\n \"sizeDefault\": \"gap-4 p-4\",\n \"sizeSm\": \"gap-2.5 px-4 py-3\",\n \"media\": \"flex shrink-0 items-center justify-center gap-2 group-has-[[data-slot=item-description]]/item:translate-y-0.5 group-has-[[data-slot=item-description]]/item:self-start [&_svg]:pointer-events-none\",\n \"mediaDefault\": \"bg-transparent\",\n \"mediaIcon\": \"size-8 rounded-sm border bg-muted [&_svg:not([class*=size-])]:size-4\",\n \"mediaImage\": \"size-10 overflow-hidden rounded-sm [&_img]:size-full [&_img]:object-cover\",\n \"content\": \"flex flex-1 flex-col gap-1 [&+[data-slot=item-content]]:flex-none\",\n \"title\": \"flex w-fit items-center gap-2 text-sm leading-snug font-medium\",\n \"description\": \"line-clamp-2 text-sm leading-normal font-normal text-balance text-foreground [&>a]:underline [&>a]:underline-offset-4 [&>a:hover]:text-primary/90\",\n \"actions\": \"flex items-center gap-2\",\n \"header\": \"flex basis-full items-center justify-between gap-2\",\n \"footer\": \"flex basis-full items-center justify-between gap-2\"\n }\n },\n \"kbd\": {\n \"root\": \"pointer-events-none inline-flex h-5 w-fit min-w-5 items-center justify-center gap-1 rounded-sm bg-muted px-1 font-sans text-xs font-medium text-foreground select-none [&_svg:not([class*=size-])]:size-3 [[data-slot=tooltip-content]_&]:bg-background/20 [[data-slot=tooltip-content]_&]:text-layer-below dark:[[data-slot=tooltip-content]_&]:bg-background/10\",\n \"slots\": {\n \"group\": \"inline-flex items-center gap-1\"\n }\n },\n \"nativeselect\": {\n \"root\": \"group/native-select relative w-fit has-[select:disabled]:opacity-50\",\n \"icons\": {\n \"selector\": \"ChevronDown\"\n },\n \"slots\": {\n \"select\": \"h-9 w-full min-w-0 appearance-none rounded-md border border-border bg-transparent px-3 py-2 pr-9 text-sm shadow-xs transition-[color,box-shadow] outline-none selection:bg-primary selection:text-primary-foreground placeholder:text-foreground disabled:pointer-events-none disabled:cursor-not-allowed data-[size=sm]:h-8 data-[size=sm]:py-1 dark:bg-background/30 dark:hover:bg-background/50 focus-visible:border-primary focus-visible:ring-[3px] focus-visible:ring-brand-mid/50 aria-invalid:border-destructive aria-invalid:ring-negative-mid/20 dark:aria-invalid:ring-negative-mid/40\",\n \"icon\": \"pointer-events-none absolute top-1/2 right-3.5 size-4 -translate-y-1/2 text-foreground opacity-50 select-none\",\n \"option\": \"bg-[Canvas] text-[CanvasText]\"\n }\n },\n \"tagsinput\": {\n \"root\": \"flex min-h-9 w-full flex-wrap items-center gap-2 rounded-md border border-border bg-transparent px-3 py-1 shadow-xs focus-within:border-primary focus-within:ring-[3px] focus-within:ring-brand-mid/50 data-[disabled]:cursor-not-allowed data-[disabled]:opacity-50\",\n \"icons\": {\n \"delete\": \"X\"\n },\n \"slots\": {\n \"input\": \"min-w-20 flex-1 bg-transparent outline-none placeholder:text-foreground disabled:cursor-not-allowed\",\n \"item\": \"inline-flex items-center gap-1 rounded-md border bg-muted px-2 py-1 text-sm\",\n \"text\": \"\",\n \"delete\": \"rounded-sm opacity-70 hover:opacity-100\",\n \"icon\": \"size-3\"\n }\n },\n \"alertdialog\": {\n \"slots\": {\n \"overlay\": \"fixed inset-0 z-50 bg-black/80 data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0\",\n \"content\": \"font-primary border border-border fixed left-[50%] top-[50%] z-50 max-w-[90vw] grid w-full lg:max-w-lg translate-x-[-50%] translate-y-[-50%] gap-6 border border-border bg-background p-6 shadow-lg duration-200 data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 rounded-lg shadow-2xl\",\n \"header\": \"flex flex-col space-y-2 gap-0.5 text-left\",\n \"footer\": \"flex flex-row justify-end gap-4\",\n \"title\": \"text-lg font-semibold text-foreground\",\n \"description\": \"text-sm text-muted-foreground font-medium\",\n \"cancel\": \"sm:mt-0\"\n }\n },\n \"avatargroup\": {\n \"root\": \"flex flex-row relative h-10 w-full font-primary\",\n \"slots\": {\n \"avatar\": \"relative -ml-2 first:ml-0\"\n }\n },\n \"checkboxfield\": {\n \"root\": \"flex items-center gap-2 font-primary w-fit\",\n \"states\": {\n \"disabled\": \"opacity-5\"\n }\n },\n \"datepicker\": {\n \"root\": \"w-[280px] justify-start text-left font-normal gap-y-0 [&>span]:truncate font-primary\",\n \"slots\": {\n \"button\": \"inline-flex items-center justify-center whitespace-nowrap rounded-md text-sm font-normal ring-offset-background transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-brand-mid focus-visible:ring-offset-2 disabled:pointer-events-none disabled:opacity-50 text-sm font-medium tracking-0 pl-4 pr-4 h-10 bg-muted hover:bg-accent/80 active:bg-accent/80 disabled:opacity-50 border-border hover:border-border active:border-border disabled:opacity-50 border border-t border-b border-r border-l\",\n \"trigger\": {\n \"popover\": \"w-fit justify-start font-normal text-sm leading-none\",\n \"text\": \"truncate text-default-mid\",\n \"select\": \"w-full mx-auto mb-2\"\n },\n \"popover\": {\n \"content\": {\n \"root\": \"flex p-0 items-start gap-6 w-auto flex-col h-[563px] bg-popover z-50\",\n \"relaxed\": \"flex p-0 items-start gap-6 w-auto flex-col lg:flex-row h-[522px] lg:h-auto bg-popover z-50\",\n \"range\": \"w-auto p-0 z-50\"\n }\n },\n \"separator\": {\n \"root\": \"hidden\",\n \"relaxed\": \"h-[397px] shrink-0 hidden lg:flex\"\n },\n \"dateInput\": {\n \"relaxed\": \"lg:flex-row\",\n \"root\": \"flex justify-between gap-6 w-full flex-col\",\n \"wrapper\": \"flex gap-2 w-full\",\n \"control\": \"w-full justify-center\",\n \"separator\": \"py-1\"\n },\n \"calendar\": {\n \"container\": {\n \"wrapper\": \"h-[457px]\",\n \"root\": \"flex flex-col gap-2 items-start justify-between\",\n \"relaxed\": \"lg:w-[544px] h-[397px]\"\n }\n },\n \"buttons\": {\n \"root\": \"flex-1\",\n \"relaxed\": \"lg:flex-initial\",\n \"trigger\": \"w-fit justify-start\",\n \"container\": {\n \"root\": \"flex gap-2\",\n \"relaxed\": \"lg:pr-4\"\n }\n },\n \"selectContent\": \"z-50\",\n \"fullWidth\": \"w-full\"\n },\n \"props\": {\n \"presets\": {\n \"relaxed\": \"flex flex-col items-sart gap-2 w-[150px]\"\n }\n },\n \"states\": {\n \"isSelected\": {\n \"true\": \"pointer-events-none\",\n \"false\": \"w-full justify-start\"\n }\n }\n },\n \"dateinput\": {\n \"root\": \"flex border rounded-lg items-center text-sm px-1 font-medium leading-5 font-primary text-default-subtle h-10 border-border shadow-sm\",\n \"slots\": {\n \"arrowUp\": \"ArrowUp\",\n \"arrowDown\": \"ArrowDown\",\n \"arrowLeft\": \"ArrowLeft\",\n \"arrowRight\": \"ArrowRight\",\n \"delete\": \"Delete\",\n \"tab\": \"Tab\",\n \"backspace\": \"Backspace\",\n \"enter\": \"Enter\",\n \"inputs\": {\n \"month\": \"p-0 outline-none w-6 border-none text-center bg-background\",\n \"day\": \"p-0 outline-none w-7 border-none text-center bg-background\",\n \"year\": \"p-0 outline-none w-12 border-none text-center bg-background\"\n },\n \"span\": \"opacity-20 -mx-px\"\n }\n },\n \"dropdownmenu\": {\n \"slots\": {\n \"subTrigger\": {\n \"root\": \"flex cursor-base select-none items-center rounded-sm px-2 py-1.5 text-sm outline-none text-foreground data-[highlighted]:bg-accent/80 data-[highlighted]:border-transparent data-[highlighted]:text-foreground\",\n \"icon\": \"ml-auto\"\n },\n \"subContent\": \"font-primary z-30 min-w-[8rem] overflow-hidden rounded-md border bg-popover p-1 text-foreground shadow-lg data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2\",\n \"content\": \"font-primary z-30 min-w-[8rem] gap-y-1 overflow-hidden border-border rounded-md border bg-popover p-1 text-foreground shadow-md data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2\",\n \"item\": \"group relative leading-snug font-normal border-0 border-transparent gap-x-2 hover:bg-muted/80 hover:border-transparent data-[disabled]:bg-transparent data-[disabled]:border-transparent text-foreground hover:text-foreground data-[disabled]:opacity-50 flex cursor-base select-none bg-transparent items-center rounded-sm px-2 py-1.5 text-sm outline-none transition-colors focus:bg-muted focus:text-foreground data-[disabled]:pointer-events-none data-[disabled]:opacity-50 data-[highlighted]:bg-muted/80 data-[highlighted]:border-transparent data-[highlighted]:text-foreground\",\n \"destructive\": {\n \"item\": \"group relative leading-snug font-normal border-0 border-transparent gap-x-2 hover:bg-muted/80 hover:border-transparent data-[disabled]:bg-transparent data-[disabled]:border-transparent text-destructive hover:text-destructive data-[disabled]:text-destructive flex cursor-base select-none bg-transparent items-center rounded-sm px-2 py-1.5 text-sm outline-none transition-colors focus:bg-muted data-[disabled]:pointer-events-none data-[disabled]:opacity-50 data-[highlighted]:bg-muted/80 data-[highlighted]:border-transparent data-[highlighted]:text-destructive\",\n \"shortcut\": \"ml-auto tracking-widest text-destructive\"\n },\n \"checkbox\": {\n \"item\": \"group relative leading-snug font-normal border-0 border-transparent gap-x-2 hover:bg-accent/80 hover:border-transparent data-[disabled]:bg-transparent data-[disabled]:border-transparent text-foreground hover:text-foreground data-[disabled]:opacity-50 flex cursor-base select-none bg-transparent items-center rounded-sm px-2 py-1.5 text-sm outline-none transition-colors focus:bg-muted focus:text-foreground data-[disabled]:pointer-events-none data-[disabled]:opacity-50 data-[highlighted]:bg-accent/80 data-[highlighted]:border-transparent data-[highlighted]:text-foreground\",\n \"icon\": \"h-4 w-4 shrink-0 justify-center\"\n },\n \"radio\": {\n \"item\": \"relative flex cursor-base select-none items-center rounded-sm py-1.5 pl-8 pr-2 text-sm outline-none transition-colors data-[disabled]:pointer-events-none data-[disabled]:opacity-50 text-foreground data-[highlighted]:bg-accent/80 data-[highlighted]:border-transparent data-[highlighted]:text-foreground\",\n \"icon\": \"absolute left-2 flex h-3.5 w-3.5 items-center justify-center\",\n \"indicator\": \"fill-current\"\n },\n \"label\": \"bg-transparent border-transparent text-foreground px-2 py-1.5 rounded-sm text-sm leading-snug font-semibold\",\n \"separator\": \"-mx-1 my-1 bg-muted h-px\",\n \"inset\": \"pl-8\",\n \"trigger\": \"outline-none\",\n \"shortcut\": \"ml-auto tracking-widest text-muted-foreground group-hover:text-muted-foreground disabled:opacity-50\"\n }\n },\n \"multiselect\": {\n \"slots\": {\n \"trigger\": \"flex w-full items-center bg-background h-auto min-h-10 max-h-auto p-3 px-4 justify-between [&_svg]:pointer-events-auto rounded-md font-normal\",\n \"wrapper\": \"flex flex-wrap items-center gap-2\",\n \"optionIcon\": \"mr-2\",\n \"controls\": \"flex items-center justify-between gap-2\",\n \"separator\": \"flex min-h-6 h-full\",\n \"noValue\": \"flex items-center justify-between w-full mx-auto\",\n \"placeholder\": \"text-sm text-foreground mx-3\",\n \"item\": \"cursor-pointer justify-normal gap-1\",\n \"noClearable\": \"ml-2\",\n \"createNew\": \"flex flex-col gap-2 items-center\",\n \"createNewButton\": \"w-fit\",\n \"error\": \"px-3 py-1.5 text-destructive text-xs\",\n \"empty\": \"px-2 py-1.5 text-xs text-muted-foreground\"\n },\n \"states\": {\n \"selected\": \"flex justify-between items-center w-full\"\n }\n },\n \"pdfviewer\": {\n \"root\": \"w-full h-full font-primary\",\n \"slots\": {\n \"worker\": {\n \"root\": \"rpv-core__viewer flex h-full relative border\",\n \"wrapper\": \"w-full h-full\"\n },\n \"toolbar\": {\n \"root\": \"items-center rounded-sm bottom-6 flex left-1/2 p-1 absolute z-[1] bg-muted translate-x-[-50%]\",\n \"icon\": {\n \"root\": \"px-0 py-0.5\",\n \"center\": \"px-0 py-0.5 ml-auto\"\n }\n },\n \"input\": \"w-[40px] mr-2\",\n \"viewer\": \"flex-1 overflow-hidden\"\n }\n },\n \"radiogroupfield\": {\n \"root\": \"flex gap-2 font-primary self-stretch p-px\",\n \"states\": {\n \"disabled\": \"opacity-50\"\n }\n },\n \"timepicker\": {\n \"slots\": {\n \"trigger\": \"w-full\",\n \"input\": \"w-full\",\n \"wrapper\": \"grid gap-4\",\n \"popover\": {\n \"content\": \"w-auto p-4\"\n },\n \"select\": {\n \"root\": \"grid gap-2\",\n \"label\": \"text-sm font-medium text-foreground\",\n \"container\": \"flex flex-col gap-2\",\n \"content\": \"max-h-48 overflow-y-auto\"\n }\n }\n },\n \"inputotp\": {\n \"root\": \"flex items-center gap-x-2 has-[:disabled]:opacity-50 font-primary\",\n \"slots\": {\n \"group\": \"flex items-center\",\n \"input\": \"disabled:cursor-not-allowed\",\n \"slot\": {\n \"root\": \"p-3 font-medium relative flex h-10 w-10 bg-background text-muted-foreground items-center justify-center border-y border-r border-border text-sm transition-all first:rounded-l-md first:border-l last:rounded-r-md text-center shadow-sm\",\n \"active\": \"z-10 ring-2\"\n },\n \"fakeCaret\": {\n \"wrapper\": \"pointer-events-none absolute inset-0 flex items-center justify-center\",\n \"root\": \"h-4 w-px animate-caret-blink bg-accent duration-1000\"\n }\n }\n },\n \"phoneinput\": {\n \"root\": \"font-primary focus:placeholder:text-muted-foreground w-full text-foreground file:disabled:placeholder:opacity-50 gap-x-2 file:disabled:opacity-50 file:disabled:opacity-50 file:disabled:opacity-50 leading-relaxed font-medium font-primary text-sm disabled:opacity-100 h-10 file:h-full gap-x-2 px-3 py-2 bg-background border-border placeholder:text-muted-foreground rounded-md focus:ring border focus:ring-blue-600 focus:ring-2 focus:ring-offset-1 focus:bg-muted focus-visible:outline-none focus:border-border focus:text-foreground disabled:opacity-50 disabled:border-border file:border-0 disabled:placeholder:opacity-50 disabled:opacity-50 disabled:opacity-50 file:bg-transparent file:border-border file:placeholder:text-muted-foreground file:text-foreground disabled:cursor-not-allowed [&::-webkit-search-cancel-button]:hidden [&::-webkit-search-decoration]:hidden shadow-sm\",\n \"slots\": {\n \"file\": \"text-muted-foreground\",\n \"container\": \"relative w-full text-foreground\",\n \"prefixIcon\": {\n \"root\": \"absolute left-3 top-1/2 transform -translate-y-1/2 disabled:opacity-100 disabled:cursor-not-allowed\",\n \"props\": {\n \"size\": \"4\"\n }\n },\n \"prefix\": \"absolute left-3 top-1/2 transform -translate-y-1/2 font-medium text-sm font-primary disabled:opacity-100 disabled:opacity-50 disabled:opacity-50 disabled:cursor-not-allowed\",\n \"prefixSlot\": \"absolute left-3 top-1/2 transform -translate-y-1/2 disabled:opacity-100 disabled:opacity-50 disabled:opacity-50 disabled:cursor-not-allowed\",\n \"suffixIcon\": {\n \"root\": \"absolute right-3 top-1/2 transform -translate-y-1/2 disabled:opacity-100 disabled:cursor-not-allowed\",\n \"props\": {\n \"size\": \"4\"\n }\n },\n \"suffix\": \"absolute right-3 top-1/2 transform -translate-y-1/2 font-medium text-sm font-primary disabled:opacity-100 disabled:opacity-50 disabled:opacity-50 disabled:cursor-not-allowed\",\n \"suffixSlot\": \"absolute right-3 top-1/2 transform -translate-y-1/2 disabled:opacity-100 disabled:opacity-50 disabled:opacity-50 disabled:cursor-not-allowed\",\n \"clearable\": {\n \"root\": \"absolute right-3 top-1/2 transform -translate-y-1/2 disabled:opacity-100 disabled:cursor-not-allowed cursor-pointer w-5 h-5 text-primary hover:text-primary/90 active:text-primary/90 p-0 hover:bg-transparent active:bg-transparent\",\n \"props\": {\n \"size\": \"default\"\n }\n },\n \"passwordIcon\": \"absolute right-3 cursor-pointer top-1/2 transform -translate-y-1/2 font-medium text-sm font-primary disabled:opacity-100 disabled:opacity-50 disabled:opacity-50 disabled:cursor-not-allowed\",\n \"clearableIconSuffix\": \"right-12\",\n \"wrapper\": \"flex gap-4\",\n \"selectorWrapper\": \"flex items-center\",\n \"nativeSelect\": \"base-select\",\n \"trigger\": {\n \"layout\": \"flex items-center\"\n },\n \"dialCode\": \"ml-2\",\n \"triggerIcon\": \"ml-2 h-4 w-4\",\n \"flagIcon\": \"-mr-2 h-5 w-5\",\n \"content\": \"w-[300px] p-0\",\n \"item\": \"gap-2\",\n \"itemLabel\": \"flex-1 text-sm\",\n \"input\": \"w-full\",\n \"flag\": \"bg-muted flex h-4 w-6 overflow-hidden rounded-sm\"\n }\n },\n \"inputnumber\": {\n \"root\": \"font-primary focus:placeholder:text-muted-foreground w-full text-foreground file:disabled:placeholder:opacity-50 gap-x-2 file:disabled:opacity-50 file:disabled:opacity-50 file:disabled:opacity-50 leading-relaxed font-medium font-primary text-sm disabled:opacity-100 h-10 file:h-full gap-x-2 px-3 py-2 bg-background border-border placeholder:text-muted-foreground rounded-md focus:ring border focus:ring-blue-600 focus:ring-2 focus:ring-offset-1 focus:bg-muted focus-visible:outline-none focus:border-border focus:text-foreground disabled:opacity-50 disabled:border-border file:border-0 disabled:placeholder:opacity-50 disabled:opacity-50 disabled:opacity-50 file:bg-transparent file:border-border file:placeholder:text-muted-foreground file:text-foreground disabled:cursor-not-allowed [&::-webkit-search-cancel-button]:hidden [&::-webkit-search-decoration]:hidden shadow-sm\",\n \"slots\": {\n \"file\": \"text-muted-foreground\",\n \"container\": \"relative w-full text-foreground\",\n \"prefixIcon\": {\n \"root\": \"absolute left-3 top-1/2 transform -translate-y-1/2 disabled:opacity-100 disabled:cursor-not-allowed\",\n \"props\": {\n \"size\": \"4\"\n }\n },\n \"prefix\": \"absolute left-3 top-1/2 transform -translate-y-1/2 font-medium text-sm font-primary disabled:opacity-100 disabled:opacity-50 disabled:opacity-50 disabled:cursor-not-allowed\",\n \"prefixSlot\": \"absolute left-3 top-1/2 transform -translate-y-1/2 disabled:opacity-100 disabled:opacity-50 disabled:opacity-50 disabled:cursor-not-allowed\",\n \"suffixIcon\": {\n \"root\": \"absolute right-3 top-1/2 transform -translate-y-1/2 disabled:opacity-100 disabled:cursor-not-allowed\",\n \"props\": {\n \"size\": \"4\"\n }\n },\n \"suffix\": \"absolute right-3 top-1/2 transform -translate-y-1/2 font-medium text-sm font-primary disabled:opacity-100 disabled:opacity-50 disabled:opacity-50 disabled:cursor-not-allowed\",\n \"suffixSlot\": \"absolute right-3 top-1/2 transform -translate-y-1/2 disabled:opacity-100 disabled:opacity-50 disabled:opacity-50 disabled:cursor-not-allowed\",\n \"clearable\": {\n \"root\": \"absolute right-3 top-1/2 transform -translate-y-1/2 disabled:opacity-100 disabled:cursor-not-allowed cursor-pointer w-5 h-5 text-primary hover:text-primary/90 active:text-primary/90 p-0 hover:bg-transparent active:bg-transparent\",\n \"props\": {\n \"size\": \"default\"\n }\n },\n \"passwordIcon\": \"absolute right-3 cursor-pointer top-1/2 transform -translate-y-1/2 font-medium text-sm font-primary disabled:opacity-100 disabled:opacity-50 disabled:opacity-50 disabled:cursor-not-allowed\",\n \"clearableIconSuffix\": \"right-12\",\n \"textCenter\": \"text-center\"\n }\n },\n \"dateslider\": {\n \"root\": \"p-3 rounded-md font-primary\",\n \"slots\": {\n \"caption\": {\n \"root\": \"flex justify-center pt-1 relative items-center\",\n \"label\": \"text-sm text-foreground leading-snug font-medium\"\n },\n \"months\": \"flex flex-col sm:flex-row space-y-4 sm:space-x-4 sm:space-y-0\",\n \"month\": \"space-y-4\",\n \"nav\": {\n \"root\": \"space-x-1 flex items-center\",\n \"button\": {\n \"next\": {\n \"root\": \"absolute right-1\",\n \"props\": {\n \"iconSize\": {\n \"else\": \"4\",\n \"ghost\": \"6\"\n },\n \"defaultVariant\": \"ghostmain\"\n }\n },\n \"root\": \"h-7 w-7 bg-transparent p-0 opacity-50 hover:opacity-100\",\n \"iconSize\": \"w-7 h-7\",\n \"previous\": {\n \"root\": \"absolute left-1\",\n \"props\": {\n \"iconSize\": {\n \"else\": \"4\",\n \"ghost\": \"6\"\n },\n \"defaultVariant\": \"ghostmain\"\n }\n }\n }\n },\n \"row\": \"flex w-full mt-2 cursor-not-allowed\",\n \"table\": \"w-full border-collapse space-y-1\",\n \"head\": {\n \"row\": \"flex\",\n \"cell\": \"text-muted-foreground leading-snug w-9 font-normal text-sm\"\n },\n \"cell\": \"text-center text-sm p-0 relative\",\n \"day\": {\n \"root\": \"h-9 w-9 p-0 font-normal text-foreground aria-selected:opacity-100 inline-flex items-center justify-center rounded-md text-sm font-medium transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-brand-mid focus-visible:ring-offset-2 disabled:opacity-50 disabled:pointer-events-none ring-offset-background hover:bg-muted/80 aria-selected:hover:bg-primary/90\",\n \"range\": {\n \"end\": \"day-range-end\",\n \"middle\": \"aria-selected:bg-muted/80 aria-selected:text-foreground aria-selected:hover:bg-muted/80\"\n },\n \"selected\": \"bg-primary text-primary-foreground hover:bg-primary/90 hover:text-primary-foreground focus:bg-primary focus:text-primary-foreground\",\n \"today\": \"bg-primary text-primary-foreground aria-selected:bg-primary/90 aria-selected:text-primary-foreground aria-selected:hover:bg-primary/90 aria-selected:focus:bg-primary/90\",\n \"outside\": \"opacity-50 opacity-50 aria-selected:text-foreground day-outside aria-selected:bg-muted/80 aria-selected:hover:bg-muted/80 aria-selected:hover:text-foreground aria-selected:focus:bg-muted/80 aria-selected:focus:text-foreground\",\n \"disabled\": \"text-foreground opacity-50\",\n \"hidden\": \"invisible\"\n },\n \"customRootSlider\": \"w-full\",\n \"header\": \"flex justify-center pt-1 relative items-center\",\n \"selectContent\": \"z-50\",\n \"buttons\": {\n \"props\": {\n \"variant\": \"ghost\"\n }\n },\n \"dialog\": {\n \"false\": \"hidden\",\n \"content\": \"grid gap-4\",\n \"body\": \"grid gap-4\",\n \"range\": \"grid gap-4\"\n }\n }\n },\n \"tabbar\": {\n \"root\": \"pb-safe-bottom w-full justify-center border-t border-border z-20 bg-card items-center absolute bottom-0 left-1/2 transform -translate-x-1/2 flex\",\n \"variant\": {\n \"compact\": \"py-4 px-4\",\n \"relaxed\": \"px-6 py-6\"\n },\n \"slots\": {\n \"content\": \"gap-3 lg:gap-8 flex flex-row w-full\"\n },\n \"props\": {\n \"maxWidth\": \"max-w-2xl\",\n \"align\": {\n \"start\": \"justify-start\",\n \"end\": \"justify-end\",\n \"center\": \"justify-center\",\n \"justify\": \"justify-between\",\n \"stretch\": \"[&>*]:flex-1\"\n }\n }\n },\n \"collapsible\": {\n \"root\": \"w-full\",\n \"slots\": {\n \"trigger\": \"inline-flex items-center justify-between gap-2\",\n \"content\": \"overflow-hidden\"\n }\n },\n \"icon\": {\n \"root\": \"shrink-0\"\n },\n \"themeprovider\": {\n \"root\": \"contents\",\n \"slots\": {\n \"themePicker\": {\n \"srOnly\": \"sr-only\"\n }\n }\n },\n \"themepicker\": {\n \"root\": \"inline-flex items-center gap-2 rounded-md border border-border bg-background p-1\",\n \"slots\": {\n \"icon\": {\n \"light\": \"h-[1.2rem] w-[1.2rem] scale-100 rotate-0 transition-all dark:scale-0 dark:-rotate-90\",\n \"dark\": \"absolute h-[1.2rem] w-[1.2rem] scale-0 rotate-90 transition-all dark:scale-100 dark:rotate-0\"\n },\n \"srOnly\": \"sr-only\"\n }\n },\n \"fileuploader\": {\n \"slots\": {\n \"cursor\": \"cursor-pointer\",\n \"borderless\": \"border-0\"\n }\n }\n};\n", "const masterDefaultConfig = require('./default-config-data');\n\nconst defaultConfigOverrides = {\n button: {\n root: 'font-sans group inline-flex shrink-0 items-center justify-center gap-2 rounded-md border border-transparent font-medium transition-colors disabled:pointer-events-none disabled:opacity-50',\n variant: {\n main: 'bg-primary text-primary-foreground hover:bg-primary/90',\n default: 'bg-primary text-primary-foreground hover:bg-primary/90',\n destructive: 'bg-destructive text-destructive-foreground hover:bg-destructive/90',\n tertiary: 'border-border bg-background text-foreground hover:bg-accent hover:text-accent-foreground',\n outline: 'border-border bg-background text-foreground hover:bg-accent hover:text-accent-foreground',\n secondary: 'bg-secondary text-secondary-foreground hover:bg-secondary/80',\n ghost: 'bg-transparent text-foreground hover:bg-accent hover:text-accent-foreground',\n ghostmain: 'bg-transparent text-primary hover:bg-accent hover:text-accent-foreground',\n link: 'text-primary underline-offset-4 hover:underline',\n linkDestructive: 'text-destructive underline-offset-4 hover:underline',\n linkdestructive: 'text-destructive underline-offset-4 hover:underline',\n },\n size: {\n xs: 'h-8 px-2 text-xs',\n small: 'h-9 px-3 text-sm',\n default: 'h-10 px-4 py-2 text-sm',\n sm: 'h-9 px-3 text-sm',\n icon: 'h-10 w-10 px-0',\n lg: 'h-11 px-8 text-base',\n large: 'h-11 px-8 text-base',\n },\n iconPosition: {\n prefix: {\n sm: 'pl-2',\n default: 'pl-3',\n lg: 'pl-4',\n small: 'pl-2',\n large: 'pl-4',\n },\n suffix: {\n sm: 'pr-2',\n default: 'pr-3',\n lg: 'pr-4',\n small: 'pr-2',\n large: 'pr-4',\n },\n default: {\n sm: 'h-9 w-9 px-0',\n default: 'h-10 w-10 px-0',\n lg: 'h-11 w-11 px-0',\n small: 'h-9 w-9 px-0',\n large: 'h-11 w-11 px-0',\n },\n },\n slots: {\n icon: {\n root: 'gap-2',\n size: {\n xs: '3',\n small: '4',\n sm: '4',\n default: '4',\n lg: '5',\n large: '5',\n icon: '4',\n },\n color: {\n main: 'text-primary-foreground',\n default: 'text-primary-foreground',\n destructive: 'text-destructive-foreground',\n tertiary: 'text-foreground',\n outline: 'text-foreground',\n secondary: 'text-secondary-foreground',\n ghost: 'text-foreground',\n ghostmain: 'text-primary',\n link: 'text-primary',\n linkDestructive: 'text-destructive',\n linkdestructive: 'text-destructive',\n },\n },\n },\n compoundVariants: {\n links: 'h-auto p-0 text-sm font-medium',\n },\n defaultVariants: {\n variant: 'main',\n size: 'default',\n },\n },\n spinner: {\n root: 'animate-spin text-primary',\n },\n};\n\nconst bundledDefaultConfig = deepMerge(masterDefaultConfig, defaultConfigOverrides);\n\nfunction isPlainObject(value) {\n return Boolean(value) && typeof value === 'object' && !Array.isArray(value);\n}\n\nfunction deepMerge(base, override) {\n if (override === undefined) return structuredCloneCompat(base);\n if (!isPlainObject(base) || !isPlainObject(override)) {\n return structuredCloneCompat(override);\n }\n\n const merged = structuredCloneCompat(base);\n for (const [key, value] of Object.entries(override)) {\n merged[key] = deepMerge(base[key], value);\n }\n return merged;\n}\n\nfunction structuredCloneCompat(value) {\n if (value === undefined) return undefined;\n return JSON.parse(JSON.stringify(value));\n}\n\nfunction mergeComponentsConfig(cloudConfig) {\n return deepMerge(bundledDefaultConfig, cloudConfig || {});\n}\n\nmodule.exports = {\n bundledDefaultConfig,\n deepMerge,\n mergeComponentsConfig,\n};\n", "const CacheManager = require('./lib/core/cache-manager');\nconst { mergeComponentsConfig } = require('./lib/core/default-config');\nconst path = require('path');\n\nfunction frontfriend(nextConfig = {}) {\n // Load cache once at config time\n const cacheManager = new CacheManager(process.cwd());\n let cache = null;\n let componentsConfig = mergeComponentsConfig(null);\n let icons = {};\n let hasCache = false;\n\n if (cacheManager.exists()) {\n cache = cacheManager.load();\n if (cache) {\n hasCache = true;\n componentsConfig = mergeComponentsConfig(cache.componentsConfig);\n icons = cache.icons || {};\n }\n } else {\n console.warn('[FrontFriend Next.js] No cache found. Using bundled defaults. Run \"npx frontfriend init\" to fetch cloud config.');\n }\n\n return {\n ...nextConfig,\n // Environment variables work with both webpack and Turbopack\n env: {\n ...nextConfig.env,\n // Inject config as environment variables for Turbopack compatibility\n // Using NEXT_PUBLIC_ prefix as Next.js doesn't allow __ prefixed keys\n NEXT_PUBLIC_FF_CONFIG: JSON.stringify(componentsConfig),\n NEXT_PUBLIC_FF_ICONS: JSON.stringify(icons),\n },\n webpack: (config, options) => {\n // 1. Call existing webpack config if provided\n if (typeof nextConfig.webpack === 'function') {\n config = nextConfig.webpack(config, options);\n }\n\n // 2. Add resolver aliases for Tailwind v4 CSS-first theme import.\n // Consumers can import '@frontfriend/tailwind/theme.css' from their app CSS.\n if (hasCache && typeof cacheManager.getCacheDir === 'function') {\n const themePath = path.join(cacheManager.getCacheDir(), 'theme.css');\n config.resolve = config.resolve || {};\n config.resolve.alias = config.resolve.alias || {};\n config.resolve.alias['@frontfriend/tailwind/theme'] = themePath;\n config.resolve.alias['@frontfriend/tailwind/theme.css'] = themePath;\n }\n\n // 4. Use webpack.DefinePlugin from options (works with both webpack 4 and 5)\n // This is for webpack - Turbopack will use the env vars above\n const { webpack } = options;\n const DefinePlugin = webpack.DefinePlugin;\n\n // 5. Inject __FF_CONFIG__ and __FF_ICONS__ as globals for webpack\n const definitions = {\n __FF_CONFIG__: JSON.stringify(componentsConfig),\n __FF_ICONS__: JSON.stringify(icons)\n };\n\n // Add DefinePlugin to plugins array\n config.plugins = config.plugins || [];\n config.plugins.push(new DefinePlugin(definitions));\n\n // Log success in development\n if (options.dev && !options.isServer) {\n console.log('[FrontFriend Next.js] Injected configuration and icons into client build');\n }\n\n // 6. Return modified config\n return config;\n }\n };\n}\n\nmodule.exports = frontfriend;\n"],
5
+ "mappings": "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",
6
6
  "names": ["require_constants", "__commonJSMin", "exports", "module", "DEFAULT_API_URL", "LEGACY_API_URL", "CACHE_DIR_NAME", "CACHE_FILES", "ENV_VARS", "require_errors", "__commonJSMin", "exports", "module", "APIError", "message", "statusCode", "url", "CacheError", "operation", "ConfigError", "field", "ProcessingError", "token", "require_file_utils", "__commonJSMin", "exports", "module", "fs", "readJsonFileSafe", "filepath", "content", "error", "readFileSafe", "writeJsonFile", "data", "indent", "writeTextFile", "writeModuleExportsFile", "fileExists", "ensureDirectoryExists", "dirpath", "removeDirectory", "require_cache_manager", "__commonJSMin", "exports", "module", "path", "CACHE_DIR_NAME", "CACHE_TTL_MS", "CACHE_FILES", "CacheError", "readJsonFileSafe", "readFileSafe", "writeJsonFile", "writeTextFile", "writeModuleExportsFile", "fileExists", "ensureDirectoryExists", "removeDirectory", "CacheManager", "appRoot", "metadata", "timestamp", "data", "file", "filePath", "key", "content", "moduleExports", "fakeModule", "e", "error", "_a", "_b", "jsFiles", "safelistPath", "jsonData", "value", "require_default_config_data", "__commonJSMin", "exports", "module", "require_default_config", "__commonJSMin", "exports", "module", "masterDefaultConfig", "defaultConfigOverrides", "bundledDefaultConfig", "deepMerge", "isPlainObject", "value", "base", "override", "structuredCloneCompat", "merged", "key", "mergeComponentsConfig", "cloudConfig", "CacheManager", "mergeComponentsConfig", "path", "frontfriend", "nextConfig", "cacheManager", "cache", "componentsConfig", "icons", "hasCache", "config", "options", "themePath", "webpack", "DefinePlugin", "definitions"]
7
7
  }