@frontfriend/tailwind 4.0.1 → 4.0.4

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 this.code = `CONFIG_${field.toUpperCase()}`;\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 border-border flex h-10 w-10 shrink-0 overflow-hidden rounded-full\",\n \"image\": \"aspect-square h-full w-full\",\n \"fallback\": \"bg-primary flex h-full w-full items-center justify-center rounded-full text-primary text-[40cqw]\"\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\": \"rounded-2xl font-primary gap-0 border bg-card text-foreground border-border relative 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 space-y-1.5 p-4 pb-0 rounded-t-2xl\",\n \"content\": \"p-4 gap-4\",\n \"footer\": \"flex gap-4 items-center p-4 bg-muted rounded-b-2xl\",\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 rounded-md border w-5 h-5 disabled:opacity-50 disabled:cursor-not-allowed disabled:bg-accent disabled:opacity-50 border-border hover:border-border bg-background hover:bg-muted/80 data-[state=checked]:border-primary/80 data-[state=checked]:hover:border-primary/80 data-[state=checked]:bg-primary/90 data-[state=checked]:hover:bg-primary/90 shrink-0 shadow-sm\",\n \"icon\": \"text-foreground hover:text-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\": \"gap-y-1 gap-x-0 text-xs font-medium disable:opacity-70 font-primary\",\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-muted\",\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 h-6 w-6 bg-background aria-checked:bg-muted/80 hover:bg-muted/80 aria-checked:hover:bg-muted/80 disabled:opacity-50 aria-checked:disabled:opacity-50 border-border aria-checked:border-border hover:border-border aria-checked:hover:border-border disabled:opacity-50 aria-checked:disabled:opacity-50 rounded-full border focus:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:cursor-not-allowed disabled:opacity-50 shadow-sm\",\n \"indicator\": \"flex items-center justify-center\",\n \"icon\": \"h-3.5 w-3.5 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\": \"disabled:opacity-50 [&>span]:truncate disabled:cursor-not-allowed focus:outline-none flex w-full items-center justify-between font-primary h rounded-md p-3 border bg-background disabled:opacity-50 border-border text-muted-foreground text-sm leading-normal font-medium disabled:opacity-50 shadow-sm h-10\",\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-muted 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-sm\",\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-muted rounded-full\",\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-muted\"\n },\n \"spinner\": {\n \"root\": \"animate-spin\",\n \"track\": \"opacity-20\"\n },\n \"switch\": {\n \"root\": \"peer p-0.5 inline-flex h-6 w-11 shrink-0 cursor-pointer items-center rounded-full border-0 border-transparent transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 focus-visible:ring-offset-background disabled:cursor-not-allowed data-[state=checked]:bg-primary/90 data-[state=unchecked]:bg-accent/80 disabled:data-[state=unchecked]:opacity-50 disabled:data-[state=checked]:opacity-50\",\n \"trigger\": \"border-transparent disabled:opacity-50 border-0 pointer-events-none block h-5 w-5 rounded-full data-[state=unchecked]:bg-background data-[state=checked]:bg-background shadow ring-0 transition-transform data-[state=checked]:translate-x-5 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-[34px] gap-1 items-center justify-center rounded-md p-0.5 font-primary bg-background border border-border\",\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 gap-y-1.5 w-full leading-snug font-medium font-primary rounded-md border border-border bg-background focus-visible:border-primary focus-visible:bg-muted px-3 py-2 text-sm placeholder:text-muted-foreground focus-visible:placeholder:text-muted-foreground text-foreground focus-visible:outline-none disabled:cursor-not-allowed disabled:opacity-50 disabled:opacity-50 disabled:opacity-50 disabled:opacity-50 shadow-sm\",\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 overflow-hidden rounded-md font-normal font-primary border gap-1 bg-primary px-3 py-1.5 text-sm text-foreground 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 \"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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",
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
  }