@codefluss/section-renderer 0.0.1-alpha.1

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.
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.mjs","sources":["../src/utils/plugin-loader.ts","../../../../node_modules/.pnpm/clsx@2.1.1/node_modules/clsx/dist/clsx.mjs","../../../../node_modules/.pnpm/tailwind-merge@3.4.0/node_modules/tailwind-merge/dist/bundle-mjs.mjs","../src/utils/design-system.ts","../../plugin-hooks/dist/utils/sanitize-css.js","../src/section-renderer.tsx","../src/utils/storybook-argtypes.ts","../src/utils/design-system-resolver.ts"],"sourcesContent":["/**\n * Plugin Loader Utilities\n *\n * Static plugin renderer registration for SSR compatibility\n */\n\nimport type { PluginId, PluginRendererMap } from \"../types\";\n\n// Import all plugin renderers\nimport { HeadingRenderer } from \"@codefluss/heading/renderer\";\nimport { TextRenderer } from \"@codefluss/text/renderer\";\nimport { ParagraphRenderer } from \"@codefluss/paragraph/renderer\";\n// TODO: Build @codefluss/image package to enable this import\n// import { ImageRenderer } from \"@codefluss/image/renderer\";\n// TODO: Add button to dependencies in package.json then uncomment\n// import { ButtonRenderer } from \"@codefluss/button/renderer\";\nimport { ContainerRenderer } from \"@codefluss/container/renderer\";\n// TODO: Build @codefluss/plugin-background-3d package to enable this import\n// import { BackgroundRenderer } from \"@codefluss/plugin-background-3d/renderer\";\nimport { ConfiguratorRenderer } from \"@codefluss/plugin-configurator-3d/renderer\";\n\n// Import form plugin renderers\nimport { FormInputRenderer } from \"@codefluss/form-input/renderer\";\nimport { FormTextareaRenderer } from \"@codefluss/form-textarea/renderer\";\nimport { FormCheckboxRenderer } from \"@codefluss/form-checkbox/renderer\";\nimport { FormRadioRenderer } from \"@codefluss/form-radio/renderer\";\nimport { FormSelectRenderer } from \"@codefluss/form-select/renderer\";\nimport { FormSubmitRenderer } from \"@codefluss/form-submit/renderer\";\nimport { FormContainerRenderer } from \"@codefluss/form-container/renderer\";\n\n/**\n * Plugin Renderer Registry\n *\n * Static map of all available plugin renderers\n * SSR-safe, no dynamic imports\n */\n// TODO: Add button to dependencies in package.json then add ButtonRenderer to this map\n// TODO: Add ImageRenderer and BackgroundRenderer after building those packages\nexport const PLUGIN_RENDERERS = {\n\theading: HeadingRenderer,\n\ttext: TextRenderer,\n\tparagraph: ParagraphRenderer,\n\t// image: ImageRenderer, // TODO: Enable after building @codefluss/image\n\tcontainer: ContainerRenderer,\n\t// \"background-3d\": BackgroundRenderer, // TODO: Enable after building @codefluss/plugin-background-3d\n\t\"configurator-3d\": ConfiguratorRenderer,\n\t// Form plugins\n\t\"form-input\": FormInputRenderer,\n\t\"form-textarea\": FormTextareaRenderer,\n\t\"form-checkbox\": FormCheckboxRenderer,\n\t\"form-radio\": FormRadioRenderer,\n\t\"form-select\": FormSelectRenderer,\n\t\"form-submit\": FormSubmitRenderer,\n\t\"form-container\": FormContainerRenderer,\n} as PluginRendererMap;\n\n/**\n * Get plugin renderer by ID\n *\n * @param pluginId - Plugin identifier\n * @returns Renderer component or null if not found\n */\nexport function getPluginRenderer(pluginId: PluginId) {\n\tconst renderer = PLUGIN_RENDERERS[pluginId];\n\n\tif (!renderer) {\n\t\tconsole.warn(`[SectionRenderer] Unknown plugin: ${pluginId}`);\n\t\treturn null;\n\t}\n\n\treturn renderer;\n}\n\n/**\n * Check if plugin is supported\n *\n * @param pluginId - Plugin identifier to check\n * @returns True if plugin renderer exists\n */\nexport function isPluginSupported(pluginId: string): pluginId is PluginId {\n\treturn pluginId in PLUGIN_RENDERERS;\n}\n\n/**\n * Get all supported plugin IDs\n *\n * @returns Array of all registered plugin IDs\n */\nexport function getSupportedPlugins(): PluginId[] {\n\treturn Object.keys(PLUGIN_RENDERERS) as PluginId[];\n}\n","function r(e){var t,f,n=\"\";if(\"string\"==typeof e||\"number\"==typeof e)n+=e;else if(\"object\"==typeof e)if(Array.isArray(e)){var o=e.length;for(t=0;t<o;t++)e[t]&&(f=r(e[t]))&&(n&&(n+=\" \"),n+=f)}else for(f in e)e[f]&&(n&&(n+=\" \"),n+=f);return n}export function clsx(){for(var e,t,f=0,n=\"\",o=arguments.length;f<o;f++)(e=arguments[f])&&(t=r(e))&&(n&&(n+=\" \"),n+=t);return n}export default clsx;","/**\n * Concatenates two arrays faster than the array spread operator.\n */\nconst concatArrays = (array1, array2) => {\n // Pre-allocate for better V8 optimization\n const combinedArray = new Array(array1.length + array2.length);\n for (let i = 0; i < array1.length; i++) {\n combinedArray[i] = array1[i];\n }\n for (let i = 0; i < array2.length; i++) {\n combinedArray[array1.length + i] = array2[i];\n }\n return combinedArray;\n};\n\n// Factory function ensures consistent object shapes\nconst createClassValidatorObject = (classGroupId, validator) => ({\n classGroupId,\n validator\n});\n// Factory ensures consistent ClassPartObject shape\nconst createClassPartObject = (nextPart = new Map(), validators = null, classGroupId) => ({\n nextPart,\n validators,\n classGroupId\n});\nconst CLASS_PART_SEPARATOR = '-';\nconst EMPTY_CONFLICTS = [];\n// I use two dots here because one dot is used as prefix for class groups in plugins\nconst ARBITRARY_PROPERTY_PREFIX = 'arbitrary..';\nconst createClassGroupUtils = config => {\n const classMap = createClassMap(config);\n const {\n conflictingClassGroups,\n conflictingClassGroupModifiers\n } = config;\n const getClassGroupId = className => {\n if (className.startsWith('[') && className.endsWith(']')) {\n return getGroupIdForArbitraryProperty(className);\n }\n const classParts = className.split(CLASS_PART_SEPARATOR);\n // Classes like `-inset-1` produce an empty string as first classPart. We assume that classes for negative values are used correctly and skip it.\n const startIndex = classParts[0] === '' && classParts.length > 1 ? 1 : 0;\n return getGroupRecursive(classParts, startIndex, classMap);\n };\n const getConflictingClassGroupIds = (classGroupId, hasPostfixModifier) => {\n if (hasPostfixModifier) {\n const modifierConflicts = conflictingClassGroupModifiers[classGroupId];\n const baseConflicts = conflictingClassGroups[classGroupId];\n if (modifierConflicts) {\n if (baseConflicts) {\n // Merge base conflicts with modifier conflicts\n return concatArrays(baseConflicts, modifierConflicts);\n }\n // Only modifier conflicts\n return modifierConflicts;\n }\n // Fall back to without postfix if no modifier conflicts\n return baseConflicts || EMPTY_CONFLICTS;\n }\n return conflictingClassGroups[classGroupId] || EMPTY_CONFLICTS;\n };\n return {\n getClassGroupId,\n getConflictingClassGroupIds\n };\n};\nconst getGroupRecursive = (classParts, startIndex, classPartObject) => {\n const classPathsLength = classParts.length - startIndex;\n if (classPathsLength === 0) {\n return classPartObject.classGroupId;\n }\n const currentClassPart = classParts[startIndex];\n const nextClassPartObject = classPartObject.nextPart.get(currentClassPart);\n if (nextClassPartObject) {\n const result = getGroupRecursive(classParts, startIndex + 1, nextClassPartObject);\n if (result) return result;\n }\n const validators = classPartObject.validators;\n if (validators === null) {\n return undefined;\n }\n // Build classRest string efficiently by joining from startIndex onwards\n const classRest = startIndex === 0 ? classParts.join(CLASS_PART_SEPARATOR) : classParts.slice(startIndex).join(CLASS_PART_SEPARATOR);\n const validatorsLength = validators.length;\n for (let i = 0; i < validatorsLength; i++) {\n const validatorObj = validators[i];\n if (validatorObj.validator(classRest)) {\n return validatorObj.classGroupId;\n }\n }\n return undefined;\n};\n/**\n * Get the class group ID for an arbitrary property.\n *\n * @param className - The class name to get the group ID for. Is expected to be string starting with `[` and ending with `]`.\n */\nconst getGroupIdForArbitraryProperty = className => className.slice(1, -1).indexOf(':') === -1 ? undefined : (() => {\n const content = className.slice(1, -1);\n const colonIndex = content.indexOf(':');\n const property = content.slice(0, colonIndex);\n return property ? ARBITRARY_PROPERTY_PREFIX + property : undefined;\n})();\n/**\n * Exported for testing only\n */\nconst createClassMap = config => {\n const {\n theme,\n classGroups\n } = config;\n return processClassGroups(classGroups, theme);\n};\n// Split into separate functions to maintain monomorphic call sites\nconst processClassGroups = (classGroups, theme) => {\n const classMap = createClassPartObject();\n for (const classGroupId in classGroups) {\n const group = classGroups[classGroupId];\n processClassesRecursively(group, classMap, classGroupId, theme);\n }\n return classMap;\n};\nconst processClassesRecursively = (classGroup, classPartObject, classGroupId, theme) => {\n const len = classGroup.length;\n for (let i = 0; i < len; i++) {\n const classDefinition = classGroup[i];\n processClassDefinition(classDefinition, classPartObject, classGroupId, theme);\n }\n};\n// Split into separate functions for each type to maintain monomorphic call sites\nconst processClassDefinition = (classDefinition, classPartObject, classGroupId, theme) => {\n if (typeof classDefinition === 'string') {\n processStringDefinition(classDefinition, classPartObject, classGroupId);\n return;\n }\n if (typeof classDefinition === 'function') {\n processFunctionDefinition(classDefinition, classPartObject, classGroupId, theme);\n return;\n }\n processObjectDefinition(classDefinition, classPartObject, classGroupId, theme);\n};\nconst processStringDefinition = (classDefinition, classPartObject, classGroupId) => {\n const classPartObjectToEdit = classDefinition === '' ? classPartObject : getPart(classPartObject, classDefinition);\n classPartObjectToEdit.classGroupId = classGroupId;\n};\nconst processFunctionDefinition = (classDefinition, classPartObject, classGroupId, theme) => {\n if (isThemeGetter(classDefinition)) {\n processClassesRecursively(classDefinition(theme), classPartObject, classGroupId, theme);\n return;\n }\n if (classPartObject.validators === null) {\n classPartObject.validators = [];\n }\n classPartObject.validators.push(createClassValidatorObject(classGroupId, classDefinition));\n};\nconst processObjectDefinition = (classDefinition, classPartObject, classGroupId, theme) => {\n const entries = Object.entries(classDefinition);\n const len = entries.length;\n for (let i = 0; i < len; i++) {\n const [key, value] = entries[i];\n processClassesRecursively(value, getPart(classPartObject, key), classGroupId, theme);\n }\n};\nconst getPart = (classPartObject, path) => {\n let current = classPartObject;\n const parts = path.split(CLASS_PART_SEPARATOR);\n const len = parts.length;\n for (let i = 0; i < len; i++) {\n const part = parts[i];\n let next = current.nextPart.get(part);\n if (!next) {\n next = createClassPartObject();\n current.nextPart.set(part, next);\n }\n current = next;\n }\n return current;\n};\n// Type guard maintains monomorphic check\nconst isThemeGetter = func => 'isThemeGetter' in func && func.isThemeGetter === true;\n\n// LRU cache implementation using plain objects for simplicity\nconst createLruCache = maxCacheSize => {\n if (maxCacheSize < 1) {\n return {\n get: () => undefined,\n set: () => {}\n };\n }\n let cacheSize = 0;\n let cache = Object.create(null);\n let previousCache = Object.create(null);\n const update = (key, value) => {\n cache[key] = value;\n cacheSize++;\n if (cacheSize > maxCacheSize) {\n cacheSize = 0;\n previousCache = cache;\n cache = Object.create(null);\n }\n };\n return {\n get(key) {\n let value = cache[key];\n if (value !== undefined) {\n return value;\n }\n if ((value = previousCache[key]) !== undefined) {\n update(key, value);\n return value;\n }\n },\n set(key, value) {\n if (key in cache) {\n cache[key] = value;\n } else {\n update(key, value);\n }\n }\n };\n};\nconst IMPORTANT_MODIFIER = '!';\nconst MODIFIER_SEPARATOR = ':';\nconst EMPTY_MODIFIERS = [];\n// Pre-allocated result object shape for consistency\nconst createResultObject = (modifiers, hasImportantModifier, baseClassName, maybePostfixModifierPosition, isExternal) => ({\n modifiers,\n hasImportantModifier,\n baseClassName,\n maybePostfixModifierPosition,\n isExternal\n});\nconst createParseClassName = config => {\n const {\n prefix,\n experimentalParseClassName\n } = config;\n /**\n * Parse class name into parts.\n *\n * Inspired by `splitAtTopLevelOnly` used in Tailwind CSS\n * @see https://github.com/tailwindlabs/tailwindcss/blob/v3.2.2/src/util/splitAtTopLevelOnly.js\n */\n let parseClassName = className => {\n // Use simple array with push for better performance\n const modifiers = [];\n let bracketDepth = 0;\n let parenDepth = 0;\n let modifierStart = 0;\n let postfixModifierPosition;\n const len = className.length;\n for (let index = 0; index < len; index++) {\n const currentCharacter = className[index];\n if (bracketDepth === 0 && parenDepth === 0) {\n if (currentCharacter === MODIFIER_SEPARATOR) {\n modifiers.push(className.slice(modifierStart, index));\n modifierStart = index + 1;\n continue;\n }\n if (currentCharacter === '/') {\n postfixModifierPosition = index;\n continue;\n }\n }\n if (currentCharacter === '[') bracketDepth++;else if (currentCharacter === ']') bracketDepth--;else if (currentCharacter === '(') parenDepth++;else if (currentCharacter === ')') parenDepth--;\n }\n const baseClassNameWithImportantModifier = modifiers.length === 0 ? className : className.slice(modifierStart);\n // Inline important modifier check\n let baseClassName = baseClassNameWithImportantModifier;\n let hasImportantModifier = false;\n if (baseClassNameWithImportantModifier.endsWith(IMPORTANT_MODIFIER)) {\n baseClassName = baseClassNameWithImportantModifier.slice(0, -1);\n hasImportantModifier = true;\n } else if (\n /**\n * In Tailwind CSS v3 the important modifier was at the start of the base class name. This is still supported for legacy reasons.\n * @see https://github.com/dcastil/tailwind-merge/issues/513#issuecomment-2614029864\n */\n baseClassNameWithImportantModifier.startsWith(IMPORTANT_MODIFIER)) {\n baseClassName = baseClassNameWithImportantModifier.slice(1);\n hasImportantModifier = true;\n }\n const maybePostfixModifierPosition = postfixModifierPosition && postfixModifierPosition > modifierStart ? postfixModifierPosition - modifierStart : undefined;\n return createResultObject(modifiers, hasImportantModifier, baseClassName, maybePostfixModifierPosition);\n };\n if (prefix) {\n const fullPrefix = prefix + MODIFIER_SEPARATOR;\n const parseClassNameOriginal = parseClassName;\n parseClassName = className => className.startsWith(fullPrefix) ? parseClassNameOriginal(className.slice(fullPrefix.length)) : createResultObject(EMPTY_MODIFIERS, false, className, undefined, true);\n }\n if (experimentalParseClassName) {\n const parseClassNameOriginal = parseClassName;\n parseClassName = className => experimentalParseClassName({\n className,\n parseClassName: parseClassNameOriginal\n });\n }\n return parseClassName;\n};\n\n/**\n * Sorts modifiers according to following schema:\n * - Predefined modifiers are sorted alphabetically\n * - When an arbitrary variant appears, it must be preserved which modifiers are before and after it\n */\nconst createSortModifiers = config => {\n // Pre-compute weights for all known modifiers for O(1) comparison\n const modifierWeights = new Map();\n // Assign weights to sensitive modifiers (highest priority, but preserve order)\n config.orderSensitiveModifiers.forEach((mod, index) => {\n modifierWeights.set(mod, 1000000 + index); // High weights for sensitive mods\n });\n return modifiers => {\n const result = [];\n let currentSegment = [];\n // Process modifiers in one pass\n for (let i = 0; i < modifiers.length; i++) {\n const modifier = modifiers[i];\n // Check if modifier is sensitive (starts with '[' or in orderSensitiveModifiers)\n const isArbitrary = modifier[0] === '[';\n const isOrderSensitive = modifierWeights.has(modifier);\n if (isArbitrary || isOrderSensitive) {\n // Sort and flush current segment alphabetically\n if (currentSegment.length > 0) {\n currentSegment.sort();\n result.push(...currentSegment);\n currentSegment = [];\n }\n result.push(modifier);\n } else {\n // Regular modifier - add to current segment for batch sorting\n currentSegment.push(modifier);\n }\n }\n // Sort and add any remaining segment items\n if (currentSegment.length > 0) {\n currentSegment.sort();\n result.push(...currentSegment);\n }\n return result;\n };\n};\nconst createConfigUtils = config => ({\n cache: createLruCache(config.cacheSize),\n parseClassName: createParseClassName(config),\n sortModifiers: createSortModifiers(config),\n ...createClassGroupUtils(config)\n});\nconst SPLIT_CLASSES_REGEX = /\\s+/;\nconst mergeClassList = (classList, configUtils) => {\n const {\n parseClassName,\n getClassGroupId,\n getConflictingClassGroupIds,\n sortModifiers\n } = configUtils;\n /**\n * Set of classGroupIds in following format:\n * `{importantModifier}{variantModifiers}{classGroupId}`\n * @example 'float'\n * @example 'hover:focus:bg-color'\n * @example 'md:!pr'\n */\n const classGroupsInConflict = [];\n const classNames = classList.trim().split(SPLIT_CLASSES_REGEX);\n let result = '';\n for (let index = classNames.length - 1; index >= 0; index -= 1) {\n const originalClassName = classNames[index];\n const {\n isExternal,\n modifiers,\n hasImportantModifier,\n baseClassName,\n maybePostfixModifierPosition\n } = parseClassName(originalClassName);\n if (isExternal) {\n result = originalClassName + (result.length > 0 ? ' ' + result : result);\n continue;\n }\n let hasPostfixModifier = !!maybePostfixModifierPosition;\n let classGroupId = getClassGroupId(hasPostfixModifier ? baseClassName.substring(0, maybePostfixModifierPosition) : baseClassName);\n if (!classGroupId) {\n if (!hasPostfixModifier) {\n // Not a Tailwind class\n result = originalClassName + (result.length > 0 ? ' ' + result : result);\n continue;\n }\n classGroupId = getClassGroupId(baseClassName);\n if (!classGroupId) {\n // Not a Tailwind class\n result = originalClassName + (result.length > 0 ? ' ' + result : result);\n continue;\n }\n hasPostfixModifier = false;\n }\n // Fast path: skip sorting for empty or single modifier\n const variantModifier = modifiers.length === 0 ? '' : modifiers.length === 1 ? modifiers[0] : sortModifiers(modifiers).join(':');\n const modifierId = hasImportantModifier ? variantModifier + IMPORTANT_MODIFIER : variantModifier;\n const classId = modifierId + classGroupId;\n if (classGroupsInConflict.indexOf(classId) > -1) {\n // Tailwind class omitted due to conflict\n continue;\n }\n classGroupsInConflict.push(classId);\n const conflictGroups = getConflictingClassGroupIds(classGroupId, hasPostfixModifier);\n for (let i = 0; i < conflictGroups.length; ++i) {\n const group = conflictGroups[i];\n classGroupsInConflict.push(modifierId + group);\n }\n // Tailwind class not in conflict\n result = originalClassName + (result.length > 0 ? ' ' + result : result);\n }\n return result;\n};\n\n/**\n * The code in this file is copied from https://github.com/lukeed/clsx and modified to suit the needs of tailwind-merge better.\n *\n * Specifically:\n * - Runtime code from https://github.com/lukeed/clsx/blob/v1.2.1/src/index.js\n * - TypeScript types from https://github.com/lukeed/clsx/blob/v1.2.1/clsx.d.ts\n *\n * Original code has MIT license: Copyright (c) Luke Edwards <luke.edwards05@gmail.com> (lukeed.com)\n */\nconst twJoin = (...classLists) => {\n let index = 0;\n let argument;\n let resolvedValue;\n let string = '';\n while (index < classLists.length) {\n if (argument = classLists[index++]) {\n if (resolvedValue = toValue(argument)) {\n string && (string += ' ');\n string += resolvedValue;\n }\n }\n }\n return string;\n};\nconst toValue = mix => {\n // Fast path for strings\n if (typeof mix === 'string') {\n return mix;\n }\n let resolvedValue;\n let string = '';\n for (let k = 0; k < mix.length; k++) {\n if (mix[k]) {\n if (resolvedValue = toValue(mix[k])) {\n string && (string += ' ');\n string += resolvedValue;\n }\n }\n }\n return string;\n};\nconst createTailwindMerge = (createConfigFirst, ...createConfigRest) => {\n let configUtils;\n let cacheGet;\n let cacheSet;\n let functionToCall;\n const initTailwindMerge = classList => {\n const config = createConfigRest.reduce((previousConfig, createConfigCurrent) => createConfigCurrent(previousConfig), createConfigFirst());\n configUtils = createConfigUtils(config);\n cacheGet = configUtils.cache.get;\n cacheSet = configUtils.cache.set;\n functionToCall = tailwindMerge;\n return tailwindMerge(classList);\n };\n const tailwindMerge = classList => {\n const cachedResult = cacheGet(classList);\n if (cachedResult) {\n return cachedResult;\n }\n const result = mergeClassList(classList, configUtils);\n cacheSet(classList, result);\n return result;\n };\n functionToCall = initTailwindMerge;\n return (...args) => functionToCall(twJoin(...args));\n};\nconst fallbackThemeArr = [];\nconst fromTheme = key => {\n const themeGetter = theme => theme[key] || fallbackThemeArr;\n themeGetter.isThemeGetter = true;\n return themeGetter;\n};\nconst arbitraryValueRegex = /^\\[(?:(\\w[\\w-]*):)?(.+)\\]$/i;\nconst arbitraryVariableRegex = /^\\((?:(\\w[\\w-]*):)?(.+)\\)$/i;\nconst fractionRegex = /^\\d+\\/\\d+$/;\nconst tshirtUnitRegex = /^(\\d+(\\.\\d+)?)?(xs|sm|md|lg|xl)$/;\nconst lengthUnitRegex = /\\d+(%|px|r?em|[sdl]?v([hwib]|min|max)|pt|pc|in|cm|mm|cap|ch|ex|r?lh|cq(w|h|i|b|min|max))|\\b(calc|min|max|clamp)\\(.+\\)|^0$/;\nconst colorFunctionRegex = /^(rgba?|hsla?|hwb|(ok)?(lab|lch)|color-mix)\\(.+\\)$/;\n// Shadow always begins with x and y offset separated by underscore optionally prepended by inset\nconst shadowRegex = /^(inset_)?-?((\\d+)?\\.?(\\d+)[a-z]+|0)_-?((\\d+)?\\.?(\\d+)[a-z]+|0)/;\nconst imageRegex = /^(url|image|image-set|cross-fade|element|(repeating-)?(linear|radial|conic)-gradient)\\(.+\\)$/;\nconst isFraction = value => fractionRegex.test(value);\nconst isNumber = value => !!value && !Number.isNaN(Number(value));\nconst isInteger = value => !!value && Number.isInteger(Number(value));\nconst isPercent = value => value.endsWith('%') && isNumber(value.slice(0, -1));\nconst isTshirtSize = value => tshirtUnitRegex.test(value);\nconst isAny = () => true;\nconst isLengthOnly = value =>\n// `colorFunctionRegex` check is necessary because color functions can have percentages in them which which would be incorrectly classified as lengths.\n// For example, `hsl(0 0% 0%)` would be classified as a length without this check.\n// I could also use lookbehind assertion in `lengthUnitRegex` but that isn't supported widely enough.\nlengthUnitRegex.test(value) && !colorFunctionRegex.test(value);\nconst isNever = () => false;\nconst isShadow = value => shadowRegex.test(value);\nconst isImage = value => imageRegex.test(value);\nconst isAnyNonArbitrary = value => !isArbitraryValue(value) && !isArbitraryVariable(value);\nconst isArbitrarySize = value => getIsArbitraryValue(value, isLabelSize, isNever);\nconst isArbitraryValue = value => arbitraryValueRegex.test(value);\nconst isArbitraryLength = value => getIsArbitraryValue(value, isLabelLength, isLengthOnly);\nconst isArbitraryNumber = value => getIsArbitraryValue(value, isLabelNumber, isNumber);\nconst isArbitraryPosition = value => getIsArbitraryValue(value, isLabelPosition, isNever);\nconst isArbitraryImage = value => getIsArbitraryValue(value, isLabelImage, isImage);\nconst isArbitraryShadow = value => getIsArbitraryValue(value, isLabelShadow, isShadow);\nconst isArbitraryVariable = value => arbitraryVariableRegex.test(value);\nconst isArbitraryVariableLength = value => getIsArbitraryVariable(value, isLabelLength);\nconst isArbitraryVariableFamilyName = value => getIsArbitraryVariable(value, isLabelFamilyName);\nconst isArbitraryVariablePosition = value => getIsArbitraryVariable(value, isLabelPosition);\nconst isArbitraryVariableSize = value => getIsArbitraryVariable(value, isLabelSize);\nconst isArbitraryVariableImage = value => getIsArbitraryVariable(value, isLabelImage);\nconst isArbitraryVariableShadow = value => getIsArbitraryVariable(value, isLabelShadow, true);\n// Helpers\nconst getIsArbitraryValue = (value, testLabel, testValue) => {\n const result = arbitraryValueRegex.exec(value);\n if (result) {\n if (result[1]) {\n return testLabel(result[1]);\n }\n return testValue(result[2]);\n }\n return false;\n};\nconst getIsArbitraryVariable = (value, testLabel, shouldMatchNoLabel = false) => {\n const result = arbitraryVariableRegex.exec(value);\n if (result) {\n if (result[1]) {\n return testLabel(result[1]);\n }\n return shouldMatchNoLabel;\n }\n return false;\n};\n// Labels\nconst isLabelPosition = label => label === 'position' || label === 'percentage';\nconst isLabelImage = label => label === 'image' || label === 'url';\nconst isLabelSize = label => label === 'length' || label === 'size' || label === 'bg-size';\nconst isLabelLength = label => label === 'length';\nconst isLabelNumber = label => label === 'number';\nconst isLabelFamilyName = label => label === 'family-name';\nconst isLabelShadow = label => label === 'shadow';\nconst validators = /*#__PURE__*/Object.defineProperty({\n __proto__: null,\n isAny,\n isAnyNonArbitrary,\n isArbitraryImage,\n isArbitraryLength,\n isArbitraryNumber,\n isArbitraryPosition,\n isArbitraryShadow,\n isArbitrarySize,\n isArbitraryValue,\n isArbitraryVariable,\n isArbitraryVariableFamilyName,\n isArbitraryVariableImage,\n isArbitraryVariableLength,\n isArbitraryVariablePosition,\n isArbitraryVariableShadow,\n isArbitraryVariableSize,\n isFraction,\n isInteger,\n isNumber,\n isPercent,\n isTshirtSize\n}, Symbol.toStringTag, {\n value: 'Module'\n});\nconst getDefaultConfig = () => {\n /**\n * Theme getters for theme variable namespaces\n * @see https://tailwindcss.com/docs/theme#theme-variable-namespaces\n */\n /***/\n const themeColor = fromTheme('color');\n const themeFont = fromTheme('font');\n const themeText = fromTheme('text');\n const themeFontWeight = fromTheme('font-weight');\n const themeTracking = fromTheme('tracking');\n const themeLeading = fromTheme('leading');\n const themeBreakpoint = fromTheme('breakpoint');\n const themeContainer = fromTheme('container');\n const themeSpacing = fromTheme('spacing');\n const themeRadius = fromTheme('radius');\n const themeShadow = fromTheme('shadow');\n const themeInsetShadow = fromTheme('inset-shadow');\n const themeTextShadow = fromTheme('text-shadow');\n const themeDropShadow = fromTheme('drop-shadow');\n const themeBlur = fromTheme('blur');\n const themePerspective = fromTheme('perspective');\n const themeAspect = fromTheme('aspect');\n const themeEase = fromTheme('ease');\n const themeAnimate = fromTheme('animate');\n /**\n * Helpers to avoid repeating the same scales\n *\n * We use functions that create a new array every time they're called instead of static arrays.\n * This ensures that users who modify any scale by mutating the array (e.g. with `array.push(element)`) don't accidentally mutate arrays in other parts of the config.\n */\n /***/\n const scaleBreak = () => ['auto', 'avoid', 'all', 'avoid-page', 'page', 'left', 'right', 'column'];\n const scalePosition = () => ['center', 'top', 'bottom', 'left', 'right', 'top-left',\n // Deprecated since Tailwind CSS v4.1.0, see https://github.com/tailwindlabs/tailwindcss/pull/17378\n 'left-top', 'top-right',\n // Deprecated since Tailwind CSS v4.1.0, see https://github.com/tailwindlabs/tailwindcss/pull/17378\n 'right-top', 'bottom-right',\n // Deprecated since Tailwind CSS v4.1.0, see https://github.com/tailwindlabs/tailwindcss/pull/17378\n 'right-bottom', 'bottom-left',\n // Deprecated since Tailwind CSS v4.1.0, see https://github.com/tailwindlabs/tailwindcss/pull/17378\n 'left-bottom'];\n const scalePositionWithArbitrary = () => [...scalePosition(), isArbitraryVariable, isArbitraryValue];\n const scaleOverflow = () => ['auto', 'hidden', 'clip', 'visible', 'scroll'];\n const scaleOverscroll = () => ['auto', 'contain', 'none'];\n const scaleUnambiguousSpacing = () => [isArbitraryVariable, isArbitraryValue, themeSpacing];\n const scaleInset = () => [isFraction, 'full', 'auto', ...scaleUnambiguousSpacing()];\n const scaleGridTemplateColsRows = () => [isInteger, 'none', 'subgrid', isArbitraryVariable, isArbitraryValue];\n const scaleGridColRowStartAndEnd = () => ['auto', {\n span: ['full', isInteger, isArbitraryVariable, isArbitraryValue]\n }, isInteger, isArbitraryVariable, isArbitraryValue];\n const scaleGridColRowStartOrEnd = () => [isInteger, 'auto', isArbitraryVariable, isArbitraryValue];\n const scaleGridAutoColsRows = () => ['auto', 'min', 'max', 'fr', isArbitraryVariable, isArbitraryValue];\n const scaleAlignPrimaryAxis = () => ['start', 'end', 'center', 'between', 'around', 'evenly', 'stretch', 'baseline', 'center-safe', 'end-safe'];\n const scaleAlignSecondaryAxis = () => ['start', 'end', 'center', 'stretch', 'center-safe', 'end-safe'];\n const scaleMargin = () => ['auto', ...scaleUnambiguousSpacing()];\n const scaleSizing = () => [isFraction, 'auto', 'full', 'dvw', 'dvh', 'lvw', 'lvh', 'svw', 'svh', 'min', 'max', 'fit', ...scaleUnambiguousSpacing()];\n const scaleColor = () => [themeColor, isArbitraryVariable, isArbitraryValue];\n const scaleBgPosition = () => [...scalePosition(), isArbitraryVariablePosition, isArbitraryPosition, {\n position: [isArbitraryVariable, isArbitraryValue]\n }];\n const scaleBgRepeat = () => ['no-repeat', {\n repeat: ['', 'x', 'y', 'space', 'round']\n }];\n const scaleBgSize = () => ['auto', 'cover', 'contain', isArbitraryVariableSize, isArbitrarySize, {\n size: [isArbitraryVariable, isArbitraryValue]\n }];\n const scaleGradientStopPosition = () => [isPercent, isArbitraryVariableLength, isArbitraryLength];\n const scaleRadius = () => [\n // Deprecated since Tailwind CSS v4.0.0\n '', 'none', 'full', themeRadius, isArbitraryVariable, isArbitraryValue];\n const scaleBorderWidth = () => ['', isNumber, isArbitraryVariableLength, isArbitraryLength];\n const scaleLineStyle = () => ['solid', 'dashed', 'dotted', 'double'];\n const scaleBlendMode = () => ['normal', 'multiply', 'screen', 'overlay', 'darken', 'lighten', 'color-dodge', 'color-burn', 'hard-light', 'soft-light', 'difference', 'exclusion', 'hue', 'saturation', 'color', 'luminosity'];\n const scaleMaskImagePosition = () => [isNumber, isPercent, isArbitraryVariablePosition, isArbitraryPosition];\n const scaleBlur = () => [\n // Deprecated since Tailwind CSS v4.0.0\n '', 'none', themeBlur, isArbitraryVariable, isArbitraryValue];\n const scaleRotate = () => ['none', isNumber, isArbitraryVariable, isArbitraryValue];\n const scaleScale = () => ['none', isNumber, isArbitraryVariable, isArbitraryValue];\n const scaleSkew = () => [isNumber, isArbitraryVariable, isArbitraryValue];\n const scaleTranslate = () => [isFraction, 'full', ...scaleUnambiguousSpacing()];\n return {\n cacheSize: 500,\n theme: {\n animate: ['spin', 'ping', 'pulse', 'bounce'],\n aspect: ['video'],\n blur: [isTshirtSize],\n breakpoint: [isTshirtSize],\n color: [isAny],\n container: [isTshirtSize],\n 'drop-shadow': [isTshirtSize],\n ease: ['in', 'out', 'in-out'],\n font: [isAnyNonArbitrary],\n 'font-weight': ['thin', 'extralight', 'light', 'normal', 'medium', 'semibold', 'bold', 'extrabold', 'black'],\n 'inset-shadow': [isTshirtSize],\n leading: ['none', 'tight', 'snug', 'normal', 'relaxed', 'loose'],\n perspective: ['dramatic', 'near', 'normal', 'midrange', 'distant', 'none'],\n radius: [isTshirtSize],\n shadow: [isTshirtSize],\n spacing: ['px', isNumber],\n text: [isTshirtSize],\n 'text-shadow': [isTshirtSize],\n tracking: ['tighter', 'tight', 'normal', 'wide', 'wider', 'widest']\n },\n classGroups: {\n // --------------\n // --- Layout ---\n // --------------\n /**\n * Aspect Ratio\n * @see https://tailwindcss.com/docs/aspect-ratio\n */\n aspect: [{\n aspect: ['auto', 'square', isFraction, isArbitraryValue, isArbitraryVariable, themeAspect]\n }],\n /**\n * Container\n * @see https://tailwindcss.com/docs/container\n * @deprecated since Tailwind CSS v4.0.0\n */\n container: ['container'],\n /**\n * Columns\n * @see https://tailwindcss.com/docs/columns\n */\n columns: [{\n columns: [isNumber, isArbitraryValue, isArbitraryVariable, themeContainer]\n }],\n /**\n * Break After\n * @see https://tailwindcss.com/docs/break-after\n */\n 'break-after': [{\n 'break-after': scaleBreak()\n }],\n /**\n * Break Before\n * @see https://tailwindcss.com/docs/break-before\n */\n 'break-before': [{\n 'break-before': scaleBreak()\n }],\n /**\n * Break Inside\n * @see https://tailwindcss.com/docs/break-inside\n */\n 'break-inside': [{\n 'break-inside': ['auto', 'avoid', 'avoid-page', 'avoid-column']\n }],\n /**\n * Box Decoration Break\n * @see https://tailwindcss.com/docs/box-decoration-break\n */\n 'box-decoration': [{\n 'box-decoration': ['slice', 'clone']\n }],\n /**\n * Box Sizing\n * @see https://tailwindcss.com/docs/box-sizing\n */\n box: [{\n box: ['border', 'content']\n }],\n /**\n * Display\n * @see https://tailwindcss.com/docs/display\n */\n display: ['block', 'inline-block', 'inline', 'flex', 'inline-flex', 'table', 'inline-table', 'table-caption', 'table-cell', 'table-column', 'table-column-group', 'table-footer-group', 'table-header-group', 'table-row-group', 'table-row', 'flow-root', 'grid', 'inline-grid', 'contents', 'list-item', 'hidden'],\n /**\n * Screen Reader Only\n * @see https://tailwindcss.com/docs/display#screen-reader-only\n */\n sr: ['sr-only', 'not-sr-only'],\n /**\n * Floats\n * @see https://tailwindcss.com/docs/float\n */\n float: [{\n float: ['right', 'left', 'none', 'start', 'end']\n }],\n /**\n * Clear\n * @see https://tailwindcss.com/docs/clear\n */\n clear: [{\n clear: ['left', 'right', 'both', 'none', 'start', 'end']\n }],\n /**\n * Isolation\n * @see https://tailwindcss.com/docs/isolation\n */\n isolation: ['isolate', 'isolation-auto'],\n /**\n * Object Fit\n * @see https://tailwindcss.com/docs/object-fit\n */\n 'object-fit': [{\n object: ['contain', 'cover', 'fill', 'none', 'scale-down']\n }],\n /**\n * Object Position\n * @see https://tailwindcss.com/docs/object-position\n */\n 'object-position': [{\n object: scalePositionWithArbitrary()\n }],\n /**\n * Overflow\n * @see https://tailwindcss.com/docs/overflow\n */\n overflow: [{\n overflow: scaleOverflow()\n }],\n /**\n * Overflow X\n * @see https://tailwindcss.com/docs/overflow\n */\n 'overflow-x': [{\n 'overflow-x': scaleOverflow()\n }],\n /**\n * Overflow Y\n * @see https://tailwindcss.com/docs/overflow\n */\n 'overflow-y': [{\n 'overflow-y': scaleOverflow()\n }],\n /**\n * Overscroll Behavior\n * @see https://tailwindcss.com/docs/overscroll-behavior\n */\n overscroll: [{\n overscroll: scaleOverscroll()\n }],\n /**\n * Overscroll Behavior X\n * @see https://tailwindcss.com/docs/overscroll-behavior\n */\n 'overscroll-x': [{\n 'overscroll-x': scaleOverscroll()\n }],\n /**\n * Overscroll Behavior Y\n * @see https://tailwindcss.com/docs/overscroll-behavior\n */\n 'overscroll-y': [{\n 'overscroll-y': scaleOverscroll()\n }],\n /**\n * Position\n * @see https://tailwindcss.com/docs/position\n */\n position: ['static', 'fixed', 'absolute', 'relative', 'sticky'],\n /**\n * Top / Right / Bottom / Left\n * @see https://tailwindcss.com/docs/top-right-bottom-left\n */\n inset: [{\n inset: scaleInset()\n }],\n /**\n * Right / Left\n * @see https://tailwindcss.com/docs/top-right-bottom-left\n */\n 'inset-x': [{\n 'inset-x': scaleInset()\n }],\n /**\n * Top / Bottom\n * @see https://tailwindcss.com/docs/top-right-bottom-left\n */\n 'inset-y': [{\n 'inset-y': scaleInset()\n }],\n /**\n * Start\n * @see https://tailwindcss.com/docs/top-right-bottom-left\n */\n start: [{\n start: scaleInset()\n }],\n /**\n * End\n * @see https://tailwindcss.com/docs/top-right-bottom-left\n */\n end: [{\n end: scaleInset()\n }],\n /**\n * Top\n * @see https://tailwindcss.com/docs/top-right-bottom-left\n */\n top: [{\n top: scaleInset()\n }],\n /**\n * Right\n * @see https://tailwindcss.com/docs/top-right-bottom-left\n */\n right: [{\n right: scaleInset()\n }],\n /**\n * Bottom\n * @see https://tailwindcss.com/docs/top-right-bottom-left\n */\n bottom: [{\n bottom: scaleInset()\n }],\n /**\n * Left\n * @see https://tailwindcss.com/docs/top-right-bottom-left\n */\n left: [{\n left: scaleInset()\n }],\n /**\n * Visibility\n * @see https://tailwindcss.com/docs/visibility\n */\n visibility: ['visible', 'invisible', 'collapse'],\n /**\n * Z-Index\n * @see https://tailwindcss.com/docs/z-index\n */\n z: [{\n z: [isInteger, 'auto', isArbitraryVariable, isArbitraryValue]\n }],\n // ------------------------\n // --- Flexbox and Grid ---\n // ------------------------\n /**\n * Flex Basis\n * @see https://tailwindcss.com/docs/flex-basis\n */\n basis: [{\n basis: [isFraction, 'full', 'auto', themeContainer, ...scaleUnambiguousSpacing()]\n }],\n /**\n * Flex Direction\n * @see https://tailwindcss.com/docs/flex-direction\n */\n 'flex-direction': [{\n flex: ['row', 'row-reverse', 'col', 'col-reverse']\n }],\n /**\n * Flex Wrap\n * @see https://tailwindcss.com/docs/flex-wrap\n */\n 'flex-wrap': [{\n flex: ['nowrap', 'wrap', 'wrap-reverse']\n }],\n /**\n * Flex\n * @see https://tailwindcss.com/docs/flex\n */\n flex: [{\n flex: [isNumber, isFraction, 'auto', 'initial', 'none', isArbitraryValue]\n }],\n /**\n * Flex Grow\n * @see https://tailwindcss.com/docs/flex-grow\n */\n grow: [{\n grow: ['', isNumber, isArbitraryVariable, isArbitraryValue]\n }],\n /**\n * Flex Shrink\n * @see https://tailwindcss.com/docs/flex-shrink\n */\n shrink: [{\n shrink: ['', isNumber, isArbitraryVariable, isArbitraryValue]\n }],\n /**\n * Order\n * @see https://tailwindcss.com/docs/order\n */\n order: [{\n order: [isInteger, 'first', 'last', 'none', isArbitraryVariable, isArbitraryValue]\n }],\n /**\n * Grid Template Columns\n * @see https://tailwindcss.com/docs/grid-template-columns\n */\n 'grid-cols': [{\n 'grid-cols': scaleGridTemplateColsRows()\n }],\n /**\n * Grid Column Start / End\n * @see https://tailwindcss.com/docs/grid-column\n */\n 'col-start-end': [{\n col: scaleGridColRowStartAndEnd()\n }],\n /**\n * Grid Column Start\n * @see https://tailwindcss.com/docs/grid-column\n */\n 'col-start': [{\n 'col-start': scaleGridColRowStartOrEnd()\n }],\n /**\n * Grid Column End\n * @see https://tailwindcss.com/docs/grid-column\n */\n 'col-end': [{\n 'col-end': scaleGridColRowStartOrEnd()\n }],\n /**\n * Grid Template Rows\n * @see https://tailwindcss.com/docs/grid-template-rows\n */\n 'grid-rows': [{\n 'grid-rows': scaleGridTemplateColsRows()\n }],\n /**\n * Grid Row Start / End\n * @see https://tailwindcss.com/docs/grid-row\n */\n 'row-start-end': [{\n row: scaleGridColRowStartAndEnd()\n }],\n /**\n * Grid Row Start\n * @see https://tailwindcss.com/docs/grid-row\n */\n 'row-start': [{\n 'row-start': scaleGridColRowStartOrEnd()\n }],\n /**\n * Grid Row End\n * @see https://tailwindcss.com/docs/grid-row\n */\n 'row-end': [{\n 'row-end': scaleGridColRowStartOrEnd()\n }],\n /**\n * Grid Auto Flow\n * @see https://tailwindcss.com/docs/grid-auto-flow\n */\n 'grid-flow': [{\n 'grid-flow': ['row', 'col', 'dense', 'row-dense', 'col-dense']\n }],\n /**\n * Grid Auto Columns\n * @see https://tailwindcss.com/docs/grid-auto-columns\n */\n 'auto-cols': [{\n 'auto-cols': scaleGridAutoColsRows()\n }],\n /**\n * Grid Auto Rows\n * @see https://tailwindcss.com/docs/grid-auto-rows\n */\n 'auto-rows': [{\n 'auto-rows': scaleGridAutoColsRows()\n }],\n /**\n * Gap\n * @see https://tailwindcss.com/docs/gap\n */\n gap: [{\n gap: scaleUnambiguousSpacing()\n }],\n /**\n * Gap X\n * @see https://tailwindcss.com/docs/gap\n */\n 'gap-x': [{\n 'gap-x': scaleUnambiguousSpacing()\n }],\n /**\n * Gap Y\n * @see https://tailwindcss.com/docs/gap\n */\n 'gap-y': [{\n 'gap-y': scaleUnambiguousSpacing()\n }],\n /**\n * Justify Content\n * @see https://tailwindcss.com/docs/justify-content\n */\n 'justify-content': [{\n justify: [...scaleAlignPrimaryAxis(), 'normal']\n }],\n /**\n * Justify Items\n * @see https://tailwindcss.com/docs/justify-items\n */\n 'justify-items': [{\n 'justify-items': [...scaleAlignSecondaryAxis(), 'normal']\n }],\n /**\n * Justify Self\n * @see https://tailwindcss.com/docs/justify-self\n */\n 'justify-self': [{\n 'justify-self': ['auto', ...scaleAlignSecondaryAxis()]\n }],\n /**\n * Align Content\n * @see https://tailwindcss.com/docs/align-content\n */\n 'align-content': [{\n content: ['normal', ...scaleAlignPrimaryAxis()]\n }],\n /**\n * Align Items\n * @see https://tailwindcss.com/docs/align-items\n */\n 'align-items': [{\n items: [...scaleAlignSecondaryAxis(), {\n baseline: ['', 'last']\n }]\n }],\n /**\n * Align Self\n * @see https://tailwindcss.com/docs/align-self\n */\n 'align-self': [{\n self: ['auto', ...scaleAlignSecondaryAxis(), {\n baseline: ['', 'last']\n }]\n }],\n /**\n * Place Content\n * @see https://tailwindcss.com/docs/place-content\n */\n 'place-content': [{\n 'place-content': scaleAlignPrimaryAxis()\n }],\n /**\n * Place Items\n * @see https://tailwindcss.com/docs/place-items\n */\n 'place-items': [{\n 'place-items': [...scaleAlignSecondaryAxis(), 'baseline']\n }],\n /**\n * Place Self\n * @see https://tailwindcss.com/docs/place-self\n */\n 'place-self': [{\n 'place-self': ['auto', ...scaleAlignSecondaryAxis()]\n }],\n // Spacing\n /**\n * Padding\n * @see https://tailwindcss.com/docs/padding\n */\n p: [{\n p: scaleUnambiguousSpacing()\n }],\n /**\n * Padding X\n * @see https://tailwindcss.com/docs/padding\n */\n px: [{\n px: scaleUnambiguousSpacing()\n }],\n /**\n * Padding Y\n * @see https://tailwindcss.com/docs/padding\n */\n py: [{\n py: scaleUnambiguousSpacing()\n }],\n /**\n * Padding Start\n * @see https://tailwindcss.com/docs/padding\n */\n ps: [{\n ps: scaleUnambiguousSpacing()\n }],\n /**\n * Padding End\n * @see https://tailwindcss.com/docs/padding\n */\n pe: [{\n pe: scaleUnambiguousSpacing()\n }],\n /**\n * Padding Top\n * @see https://tailwindcss.com/docs/padding\n */\n pt: [{\n pt: scaleUnambiguousSpacing()\n }],\n /**\n * Padding Right\n * @see https://tailwindcss.com/docs/padding\n */\n pr: [{\n pr: scaleUnambiguousSpacing()\n }],\n /**\n * Padding Bottom\n * @see https://tailwindcss.com/docs/padding\n */\n pb: [{\n pb: scaleUnambiguousSpacing()\n }],\n /**\n * Padding Left\n * @see https://tailwindcss.com/docs/padding\n */\n pl: [{\n pl: scaleUnambiguousSpacing()\n }],\n /**\n * Margin\n * @see https://tailwindcss.com/docs/margin\n */\n m: [{\n m: scaleMargin()\n }],\n /**\n * Margin X\n * @see https://tailwindcss.com/docs/margin\n */\n mx: [{\n mx: scaleMargin()\n }],\n /**\n * Margin Y\n * @see https://tailwindcss.com/docs/margin\n */\n my: [{\n my: scaleMargin()\n }],\n /**\n * Margin Start\n * @see https://tailwindcss.com/docs/margin\n */\n ms: [{\n ms: scaleMargin()\n }],\n /**\n * Margin End\n * @see https://tailwindcss.com/docs/margin\n */\n me: [{\n me: scaleMargin()\n }],\n /**\n * Margin Top\n * @see https://tailwindcss.com/docs/margin\n */\n mt: [{\n mt: scaleMargin()\n }],\n /**\n * Margin Right\n * @see https://tailwindcss.com/docs/margin\n */\n mr: [{\n mr: scaleMargin()\n }],\n /**\n * Margin Bottom\n * @see https://tailwindcss.com/docs/margin\n */\n mb: [{\n mb: scaleMargin()\n }],\n /**\n * Margin Left\n * @see https://tailwindcss.com/docs/margin\n */\n ml: [{\n ml: scaleMargin()\n }],\n /**\n * Space Between X\n * @see https://tailwindcss.com/docs/margin#adding-space-between-children\n */\n 'space-x': [{\n 'space-x': scaleUnambiguousSpacing()\n }],\n /**\n * Space Between X Reverse\n * @see https://tailwindcss.com/docs/margin#adding-space-between-children\n */\n 'space-x-reverse': ['space-x-reverse'],\n /**\n * Space Between Y\n * @see https://tailwindcss.com/docs/margin#adding-space-between-children\n */\n 'space-y': [{\n 'space-y': scaleUnambiguousSpacing()\n }],\n /**\n * Space Between Y Reverse\n * @see https://tailwindcss.com/docs/margin#adding-space-between-children\n */\n 'space-y-reverse': ['space-y-reverse'],\n // --------------\n // --- Sizing ---\n // --------------\n /**\n * Size\n * @see https://tailwindcss.com/docs/width#setting-both-width-and-height\n */\n size: [{\n size: scaleSizing()\n }],\n /**\n * Width\n * @see https://tailwindcss.com/docs/width\n */\n w: [{\n w: [themeContainer, 'screen', ...scaleSizing()]\n }],\n /**\n * Min-Width\n * @see https://tailwindcss.com/docs/min-width\n */\n 'min-w': [{\n 'min-w': [themeContainer, 'screen', /** Deprecated. @see https://github.com/tailwindlabs/tailwindcss.com/issues/2027#issuecomment-2620152757 */\n 'none', ...scaleSizing()]\n }],\n /**\n * Max-Width\n * @see https://tailwindcss.com/docs/max-width\n */\n 'max-w': [{\n 'max-w': [themeContainer, 'screen', 'none', /** Deprecated since Tailwind CSS v4.0.0. @see https://github.com/tailwindlabs/tailwindcss.com/issues/2027#issuecomment-2620152757 */\n 'prose', /** Deprecated since Tailwind CSS v4.0.0. @see https://github.com/tailwindlabs/tailwindcss.com/issues/2027#issuecomment-2620152757 */\n {\n screen: [themeBreakpoint]\n }, ...scaleSizing()]\n }],\n /**\n * Height\n * @see https://tailwindcss.com/docs/height\n */\n h: [{\n h: ['screen', 'lh', ...scaleSizing()]\n }],\n /**\n * Min-Height\n * @see https://tailwindcss.com/docs/min-height\n */\n 'min-h': [{\n 'min-h': ['screen', 'lh', 'none', ...scaleSizing()]\n }],\n /**\n * Max-Height\n * @see https://tailwindcss.com/docs/max-height\n */\n 'max-h': [{\n 'max-h': ['screen', 'lh', ...scaleSizing()]\n }],\n // ------------------\n // --- Typography ---\n // ------------------\n /**\n * Font Size\n * @see https://tailwindcss.com/docs/font-size\n */\n 'font-size': [{\n text: ['base', themeText, isArbitraryVariableLength, isArbitraryLength]\n }],\n /**\n * Font Smoothing\n * @see https://tailwindcss.com/docs/font-smoothing\n */\n 'font-smoothing': ['antialiased', 'subpixel-antialiased'],\n /**\n * Font Style\n * @see https://tailwindcss.com/docs/font-style\n */\n 'font-style': ['italic', 'not-italic'],\n /**\n * Font Weight\n * @see https://tailwindcss.com/docs/font-weight\n */\n 'font-weight': [{\n font: [themeFontWeight, isArbitraryVariable, isArbitraryNumber]\n }],\n /**\n * Font Stretch\n * @see https://tailwindcss.com/docs/font-stretch\n */\n 'font-stretch': [{\n 'font-stretch': ['ultra-condensed', 'extra-condensed', 'condensed', 'semi-condensed', 'normal', 'semi-expanded', 'expanded', 'extra-expanded', 'ultra-expanded', isPercent, isArbitraryValue]\n }],\n /**\n * Font Family\n * @see https://tailwindcss.com/docs/font-family\n */\n 'font-family': [{\n font: [isArbitraryVariableFamilyName, isArbitraryValue, themeFont]\n }],\n /**\n * Font Variant Numeric\n * @see https://tailwindcss.com/docs/font-variant-numeric\n */\n 'fvn-normal': ['normal-nums'],\n /**\n * Font Variant Numeric\n * @see https://tailwindcss.com/docs/font-variant-numeric\n */\n 'fvn-ordinal': ['ordinal'],\n /**\n * Font Variant Numeric\n * @see https://tailwindcss.com/docs/font-variant-numeric\n */\n 'fvn-slashed-zero': ['slashed-zero'],\n /**\n * Font Variant Numeric\n * @see https://tailwindcss.com/docs/font-variant-numeric\n */\n 'fvn-figure': ['lining-nums', 'oldstyle-nums'],\n /**\n * Font Variant Numeric\n * @see https://tailwindcss.com/docs/font-variant-numeric\n */\n 'fvn-spacing': ['proportional-nums', 'tabular-nums'],\n /**\n * Font Variant Numeric\n * @see https://tailwindcss.com/docs/font-variant-numeric\n */\n 'fvn-fraction': ['diagonal-fractions', 'stacked-fractions'],\n /**\n * Letter Spacing\n * @see https://tailwindcss.com/docs/letter-spacing\n */\n tracking: [{\n tracking: [themeTracking, isArbitraryVariable, isArbitraryValue]\n }],\n /**\n * Line Clamp\n * @see https://tailwindcss.com/docs/line-clamp\n */\n 'line-clamp': [{\n 'line-clamp': [isNumber, 'none', isArbitraryVariable, isArbitraryNumber]\n }],\n /**\n * Line Height\n * @see https://tailwindcss.com/docs/line-height\n */\n leading: [{\n leading: [/** Deprecated since Tailwind CSS v4.0.0. @see https://github.com/tailwindlabs/tailwindcss.com/issues/2027#issuecomment-2620152757 */\n themeLeading, ...scaleUnambiguousSpacing()]\n }],\n /**\n * List Style Image\n * @see https://tailwindcss.com/docs/list-style-image\n */\n 'list-image': [{\n 'list-image': ['none', isArbitraryVariable, isArbitraryValue]\n }],\n /**\n * List Style Position\n * @see https://tailwindcss.com/docs/list-style-position\n */\n 'list-style-position': [{\n list: ['inside', 'outside']\n }],\n /**\n * List Style Type\n * @see https://tailwindcss.com/docs/list-style-type\n */\n 'list-style-type': [{\n list: ['disc', 'decimal', 'none', isArbitraryVariable, isArbitraryValue]\n }],\n /**\n * Text Alignment\n * @see https://tailwindcss.com/docs/text-align\n */\n 'text-alignment': [{\n text: ['left', 'center', 'right', 'justify', 'start', 'end']\n }],\n /**\n * Placeholder Color\n * @deprecated since Tailwind CSS v3.0.0\n * @see https://v3.tailwindcss.com/docs/placeholder-color\n */\n 'placeholder-color': [{\n placeholder: scaleColor()\n }],\n /**\n * Text Color\n * @see https://tailwindcss.com/docs/text-color\n */\n 'text-color': [{\n text: scaleColor()\n }],\n /**\n * Text Decoration\n * @see https://tailwindcss.com/docs/text-decoration\n */\n 'text-decoration': ['underline', 'overline', 'line-through', 'no-underline'],\n /**\n * Text Decoration Style\n * @see https://tailwindcss.com/docs/text-decoration-style\n */\n 'text-decoration-style': [{\n decoration: [...scaleLineStyle(), 'wavy']\n }],\n /**\n * Text Decoration Thickness\n * @see https://tailwindcss.com/docs/text-decoration-thickness\n */\n 'text-decoration-thickness': [{\n decoration: [isNumber, 'from-font', 'auto', isArbitraryVariable, isArbitraryLength]\n }],\n /**\n * Text Decoration Color\n * @see https://tailwindcss.com/docs/text-decoration-color\n */\n 'text-decoration-color': [{\n decoration: scaleColor()\n }],\n /**\n * Text Underline Offset\n * @see https://tailwindcss.com/docs/text-underline-offset\n */\n 'underline-offset': [{\n 'underline-offset': [isNumber, 'auto', isArbitraryVariable, isArbitraryValue]\n }],\n /**\n * Text Transform\n * @see https://tailwindcss.com/docs/text-transform\n */\n 'text-transform': ['uppercase', 'lowercase', 'capitalize', 'normal-case'],\n /**\n * Text Overflow\n * @see https://tailwindcss.com/docs/text-overflow\n */\n 'text-overflow': ['truncate', 'text-ellipsis', 'text-clip'],\n /**\n * Text Wrap\n * @see https://tailwindcss.com/docs/text-wrap\n */\n 'text-wrap': [{\n text: ['wrap', 'nowrap', 'balance', 'pretty']\n }],\n /**\n * Text Indent\n * @see https://tailwindcss.com/docs/text-indent\n */\n indent: [{\n indent: scaleUnambiguousSpacing()\n }],\n /**\n * Vertical Alignment\n * @see https://tailwindcss.com/docs/vertical-align\n */\n 'vertical-align': [{\n align: ['baseline', 'top', 'middle', 'bottom', 'text-top', 'text-bottom', 'sub', 'super', isArbitraryVariable, isArbitraryValue]\n }],\n /**\n * Whitespace\n * @see https://tailwindcss.com/docs/whitespace\n */\n whitespace: [{\n whitespace: ['normal', 'nowrap', 'pre', 'pre-line', 'pre-wrap', 'break-spaces']\n }],\n /**\n * Word Break\n * @see https://tailwindcss.com/docs/word-break\n */\n break: [{\n break: ['normal', 'words', 'all', 'keep']\n }],\n /**\n * Overflow Wrap\n * @see https://tailwindcss.com/docs/overflow-wrap\n */\n wrap: [{\n wrap: ['break-word', 'anywhere', 'normal']\n }],\n /**\n * Hyphens\n * @see https://tailwindcss.com/docs/hyphens\n */\n hyphens: [{\n hyphens: ['none', 'manual', 'auto']\n }],\n /**\n * Content\n * @see https://tailwindcss.com/docs/content\n */\n content: [{\n content: ['none', isArbitraryVariable, isArbitraryValue]\n }],\n // -------------------\n // --- Backgrounds ---\n // -------------------\n /**\n * Background Attachment\n * @see https://tailwindcss.com/docs/background-attachment\n */\n 'bg-attachment': [{\n bg: ['fixed', 'local', 'scroll']\n }],\n /**\n * Background Clip\n * @see https://tailwindcss.com/docs/background-clip\n */\n 'bg-clip': [{\n 'bg-clip': ['border', 'padding', 'content', 'text']\n }],\n /**\n * Background Origin\n * @see https://tailwindcss.com/docs/background-origin\n */\n 'bg-origin': [{\n 'bg-origin': ['border', 'padding', 'content']\n }],\n /**\n * Background Position\n * @see https://tailwindcss.com/docs/background-position\n */\n 'bg-position': [{\n bg: scaleBgPosition()\n }],\n /**\n * Background Repeat\n * @see https://tailwindcss.com/docs/background-repeat\n */\n 'bg-repeat': [{\n bg: scaleBgRepeat()\n }],\n /**\n * Background Size\n * @see https://tailwindcss.com/docs/background-size\n */\n 'bg-size': [{\n bg: scaleBgSize()\n }],\n /**\n * Background Image\n * @see https://tailwindcss.com/docs/background-image\n */\n 'bg-image': [{\n bg: ['none', {\n linear: [{\n to: ['t', 'tr', 'r', 'br', 'b', 'bl', 'l', 'tl']\n }, isInteger, isArbitraryVariable, isArbitraryValue],\n radial: ['', isArbitraryVariable, isArbitraryValue],\n conic: [isInteger, isArbitraryVariable, isArbitraryValue]\n }, isArbitraryVariableImage, isArbitraryImage]\n }],\n /**\n * Background Color\n * @see https://tailwindcss.com/docs/background-color\n */\n 'bg-color': [{\n bg: scaleColor()\n }],\n /**\n * Gradient Color Stops From Position\n * @see https://tailwindcss.com/docs/gradient-color-stops\n */\n 'gradient-from-pos': [{\n from: scaleGradientStopPosition()\n }],\n /**\n * Gradient Color Stops Via Position\n * @see https://tailwindcss.com/docs/gradient-color-stops\n */\n 'gradient-via-pos': [{\n via: scaleGradientStopPosition()\n }],\n /**\n * Gradient Color Stops To Position\n * @see https://tailwindcss.com/docs/gradient-color-stops\n */\n 'gradient-to-pos': [{\n to: scaleGradientStopPosition()\n }],\n /**\n * Gradient Color Stops From\n * @see https://tailwindcss.com/docs/gradient-color-stops\n */\n 'gradient-from': [{\n from: scaleColor()\n }],\n /**\n * Gradient Color Stops Via\n * @see https://tailwindcss.com/docs/gradient-color-stops\n */\n 'gradient-via': [{\n via: scaleColor()\n }],\n /**\n * Gradient Color Stops To\n * @see https://tailwindcss.com/docs/gradient-color-stops\n */\n 'gradient-to': [{\n to: scaleColor()\n }],\n // ---------------\n // --- Borders ---\n // ---------------\n /**\n * Border Radius\n * @see https://tailwindcss.com/docs/border-radius\n */\n rounded: [{\n rounded: scaleRadius()\n }],\n /**\n * Border Radius Start\n * @see https://tailwindcss.com/docs/border-radius\n */\n 'rounded-s': [{\n 'rounded-s': scaleRadius()\n }],\n /**\n * Border Radius End\n * @see https://tailwindcss.com/docs/border-radius\n */\n 'rounded-e': [{\n 'rounded-e': scaleRadius()\n }],\n /**\n * Border Radius Top\n * @see https://tailwindcss.com/docs/border-radius\n */\n 'rounded-t': [{\n 'rounded-t': scaleRadius()\n }],\n /**\n * Border Radius Right\n * @see https://tailwindcss.com/docs/border-radius\n */\n 'rounded-r': [{\n 'rounded-r': scaleRadius()\n }],\n /**\n * Border Radius Bottom\n * @see https://tailwindcss.com/docs/border-radius\n */\n 'rounded-b': [{\n 'rounded-b': scaleRadius()\n }],\n /**\n * Border Radius Left\n * @see https://tailwindcss.com/docs/border-radius\n */\n 'rounded-l': [{\n 'rounded-l': scaleRadius()\n }],\n /**\n * Border Radius Start Start\n * @see https://tailwindcss.com/docs/border-radius\n */\n 'rounded-ss': [{\n 'rounded-ss': scaleRadius()\n }],\n /**\n * Border Radius Start End\n * @see https://tailwindcss.com/docs/border-radius\n */\n 'rounded-se': [{\n 'rounded-se': scaleRadius()\n }],\n /**\n * Border Radius End End\n * @see https://tailwindcss.com/docs/border-radius\n */\n 'rounded-ee': [{\n 'rounded-ee': scaleRadius()\n }],\n /**\n * Border Radius End Start\n * @see https://tailwindcss.com/docs/border-radius\n */\n 'rounded-es': [{\n 'rounded-es': scaleRadius()\n }],\n /**\n * Border Radius Top Left\n * @see https://tailwindcss.com/docs/border-radius\n */\n 'rounded-tl': [{\n 'rounded-tl': scaleRadius()\n }],\n /**\n * Border Radius Top Right\n * @see https://tailwindcss.com/docs/border-radius\n */\n 'rounded-tr': [{\n 'rounded-tr': scaleRadius()\n }],\n /**\n * Border Radius Bottom Right\n * @see https://tailwindcss.com/docs/border-radius\n */\n 'rounded-br': [{\n 'rounded-br': scaleRadius()\n }],\n /**\n * Border Radius Bottom Left\n * @see https://tailwindcss.com/docs/border-radius\n */\n 'rounded-bl': [{\n 'rounded-bl': scaleRadius()\n }],\n /**\n * Border Width\n * @see https://tailwindcss.com/docs/border-width\n */\n 'border-w': [{\n border: scaleBorderWidth()\n }],\n /**\n * Border Width X\n * @see https://tailwindcss.com/docs/border-width\n */\n 'border-w-x': [{\n 'border-x': scaleBorderWidth()\n }],\n /**\n * Border Width Y\n * @see https://tailwindcss.com/docs/border-width\n */\n 'border-w-y': [{\n 'border-y': scaleBorderWidth()\n }],\n /**\n * Border Width Start\n * @see https://tailwindcss.com/docs/border-width\n */\n 'border-w-s': [{\n 'border-s': scaleBorderWidth()\n }],\n /**\n * Border Width End\n * @see https://tailwindcss.com/docs/border-width\n */\n 'border-w-e': [{\n 'border-e': scaleBorderWidth()\n }],\n /**\n * Border Width Top\n * @see https://tailwindcss.com/docs/border-width\n */\n 'border-w-t': [{\n 'border-t': scaleBorderWidth()\n }],\n /**\n * Border Width Right\n * @see https://tailwindcss.com/docs/border-width\n */\n 'border-w-r': [{\n 'border-r': scaleBorderWidth()\n }],\n /**\n * Border Width Bottom\n * @see https://tailwindcss.com/docs/border-width\n */\n 'border-w-b': [{\n 'border-b': scaleBorderWidth()\n }],\n /**\n * Border Width Left\n * @see https://tailwindcss.com/docs/border-width\n */\n 'border-w-l': [{\n 'border-l': scaleBorderWidth()\n }],\n /**\n * Divide Width X\n * @see https://tailwindcss.com/docs/border-width#between-children\n */\n 'divide-x': [{\n 'divide-x': scaleBorderWidth()\n }],\n /**\n * Divide Width X Reverse\n * @see https://tailwindcss.com/docs/border-width#between-children\n */\n 'divide-x-reverse': ['divide-x-reverse'],\n /**\n * Divide Width Y\n * @see https://tailwindcss.com/docs/border-width#between-children\n */\n 'divide-y': [{\n 'divide-y': scaleBorderWidth()\n }],\n /**\n * Divide Width Y Reverse\n * @see https://tailwindcss.com/docs/border-width#between-children\n */\n 'divide-y-reverse': ['divide-y-reverse'],\n /**\n * Border Style\n * @see https://tailwindcss.com/docs/border-style\n */\n 'border-style': [{\n border: [...scaleLineStyle(), 'hidden', 'none']\n }],\n /**\n * Divide Style\n * @see https://tailwindcss.com/docs/border-style#setting-the-divider-style\n */\n 'divide-style': [{\n divide: [...scaleLineStyle(), 'hidden', 'none']\n }],\n /**\n * Border Color\n * @see https://tailwindcss.com/docs/border-color\n */\n 'border-color': [{\n border: scaleColor()\n }],\n /**\n * Border Color X\n * @see https://tailwindcss.com/docs/border-color\n */\n 'border-color-x': [{\n 'border-x': scaleColor()\n }],\n /**\n * Border Color Y\n * @see https://tailwindcss.com/docs/border-color\n */\n 'border-color-y': [{\n 'border-y': scaleColor()\n }],\n /**\n * Border Color S\n * @see https://tailwindcss.com/docs/border-color\n */\n 'border-color-s': [{\n 'border-s': scaleColor()\n }],\n /**\n * Border Color E\n * @see https://tailwindcss.com/docs/border-color\n */\n 'border-color-e': [{\n 'border-e': scaleColor()\n }],\n /**\n * Border Color Top\n * @see https://tailwindcss.com/docs/border-color\n */\n 'border-color-t': [{\n 'border-t': scaleColor()\n }],\n /**\n * Border Color Right\n * @see https://tailwindcss.com/docs/border-color\n */\n 'border-color-r': [{\n 'border-r': scaleColor()\n }],\n /**\n * Border Color Bottom\n * @see https://tailwindcss.com/docs/border-color\n */\n 'border-color-b': [{\n 'border-b': scaleColor()\n }],\n /**\n * Border Color Left\n * @see https://tailwindcss.com/docs/border-color\n */\n 'border-color-l': [{\n 'border-l': scaleColor()\n }],\n /**\n * Divide Color\n * @see https://tailwindcss.com/docs/divide-color\n */\n 'divide-color': [{\n divide: scaleColor()\n }],\n /**\n * Outline Style\n * @see https://tailwindcss.com/docs/outline-style\n */\n 'outline-style': [{\n outline: [...scaleLineStyle(), 'none', 'hidden']\n }],\n /**\n * Outline Offset\n * @see https://tailwindcss.com/docs/outline-offset\n */\n 'outline-offset': [{\n 'outline-offset': [isNumber, isArbitraryVariable, isArbitraryValue]\n }],\n /**\n * Outline Width\n * @see https://tailwindcss.com/docs/outline-width\n */\n 'outline-w': [{\n outline: ['', isNumber, isArbitraryVariableLength, isArbitraryLength]\n }],\n /**\n * Outline Color\n * @see https://tailwindcss.com/docs/outline-color\n */\n 'outline-color': [{\n outline: scaleColor()\n }],\n // ---------------\n // --- Effects ---\n // ---------------\n /**\n * Box Shadow\n * @see https://tailwindcss.com/docs/box-shadow\n */\n shadow: [{\n shadow: [\n // Deprecated since Tailwind CSS v4.0.0\n '', 'none', themeShadow, isArbitraryVariableShadow, isArbitraryShadow]\n }],\n /**\n * Box Shadow Color\n * @see https://tailwindcss.com/docs/box-shadow#setting-the-shadow-color\n */\n 'shadow-color': [{\n shadow: scaleColor()\n }],\n /**\n * Inset Box Shadow\n * @see https://tailwindcss.com/docs/box-shadow#adding-an-inset-shadow\n */\n 'inset-shadow': [{\n 'inset-shadow': ['none', themeInsetShadow, isArbitraryVariableShadow, isArbitraryShadow]\n }],\n /**\n * Inset Box Shadow Color\n * @see https://tailwindcss.com/docs/box-shadow#setting-the-inset-shadow-color\n */\n 'inset-shadow-color': [{\n 'inset-shadow': scaleColor()\n }],\n /**\n * Ring Width\n * @see https://tailwindcss.com/docs/box-shadow#adding-a-ring\n */\n 'ring-w': [{\n ring: scaleBorderWidth()\n }],\n /**\n * Ring Width Inset\n * @see https://v3.tailwindcss.com/docs/ring-width#inset-rings\n * @deprecated since Tailwind CSS v4.0.0\n * @see https://github.com/tailwindlabs/tailwindcss/blob/v4.0.0/packages/tailwindcss/src/utilities.ts#L4158\n */\n 'ring-w-inset': ['ring-inset'],\n /**\n * Ring Color\n * @see https://tailwindcss.com/docs/box-shadow#setting-the-ring-color\n */\n 'ring-color': [{\n ring: scaleColor()\n }],\n /**\n * Ring Offset Width\n * @see https://v3.tailwindcss.com/docs/ring-offset-width\n * @deprecated since Tailwind CSS v4.0.0\n * @see https://github.com/tailwindlabs/tailwindcss/blob/v4.0.0/packages/tailwindcss/src/utilities.ts#L4158\n */\n 'ring-offset-w': [{\n 'ring-offset': [isNumber, isArbitraryLength]\n }],\n /**\n * Ring Offset Color\n * @see https://v3.tailwindcss.com/docs/ring-offset-color\n * @deprecated since Tailwind CSS v4.0.0\n * @see https://github.com/tailwindlabs/tailwindcss/blob/v4.0.0/packages/tailwindcss/src/utilities.ts#L4158\n */\n 'ring-offset-color': [{\n 'ring-offset': scaleColor()\n }],\n /**\n * Inset Ring Width\n * @see https://tailwindcss.com/docs/box-shadow#adding-an-inset-ring\n */\n 'inset-ring-w': [{\n 'inset-ring': scaleBorderWidth()\n }],\n /**\n * Inset Ring Color\n * @see https://tailwindcss.com/docs/box-shadow#setting-the-inset-ring-color\n */\n 'inset-ring-color': [{\n 'inset-ring': scaleColor()\n }],\n /**\n * Text Shadow\n * @see https://tailwindcss.com/docs/text-shadow\n */\n 'text-shadow': [{\n 'text-shadow': ['none', themeTextShadow, isArbitraryVariableShadow, isArbitraryShadow]\n }],\n /**\n * Text Shadow Color\n * @see https://tailwindcss.com/docs/text-shadow#setting-the-shadow-color\n */\n 'text-shadow-color': [{\n 'text-shadow': scaleColor()\n }],\n /**\n * Opacity\n * @see https://tailwindcss.com/docs/opacity\n */\n opacity: [{\n opacity: [isNumber, isArbitraryVariable, isArbitraryValue]\n }],\n /**\n * Mix Blend Mode\n * @see https://tailwindcss.com/docs/mix-blend-mode\n */\n 'mix-blend': [{\n 'mix-blend': [...scaleBlendMode(), 'plus-darker', 'plus-lighter']\n }],\n /**\n * Background Blend Mode\n * @see https://tailwindcss.com/docs/background-blend-mode\n */\n 'bg-blend': [{\n 'bg-blend': scaleBlendMode()\n }],\n /**\n * Mask Clip\n * @see https://tailwindcss.com/docs/mask-clip\n */\n 'mask-clip': [{\n 'mask-clip': ['border', 'padding', 'content', 'fill', 'stroke', 'view']\n }, 'mask-no-clip'],\n /**\n * Mask Composite\n * @see https://tailwindcss.com/docs/mask-composite\n */\n 'mask-composite': [{\n mask: ['add', 'subtract', 'intersect', 'exclude']\n }],\n /**\n * Mask Image\n * @see https://tailwindcss.com/docs/mask-image\n */\n 'mask-image-linear-pos': [{\n 'mask-linear': [isNumber]\n }],\n 'mask-image-linear-from-pos': [{\n 'mask-linear-from': scaleMaskImagePosition()\n }],\n 'mask-image-linear-to-pos': [{\n 'mask-linear-to': scaleMaskImagePosition()\n }],\n 'mask-image-linear-from-color': [{\n 'mask-linear-from': scaleColor()\n }],\n 'mask-image-linear-to-color': [{\n 'mask-linear-to': scaleColor()\n }],\n 'mask-image-t-from-pos': [{\n 'mask-t-from': scaleMaskImagePosition()\n }],\n 'mask-image-t-to-pos': [{\n 'mask-t-to': scaleMaskImagePosition()\n }],\n 'mask-image-t-from-color': [{\n 'mask-t-from': scaleColor()\n }],\n 'mask-image-t-to-color': [{\n 'mask-t-to': scaleColor()\n }],\n 'mask-image-r-from-pos': [{\n 'mask-r-from': scaleMaskImagePosition()\n }],\n 'mask-image-r-to-pos': [{\n 'mask-r-to': scaleMaskImagePosition()\n }],\n 'mask-image-r-from-color': [{\n 'mask-r-from': scaleColor()\n }],\n 'mask-image-r-to-color': [{\n 'mask-r-to': scaleColor()\n }],\n 'mask-image-b-from-pos': [{\n 'mask-b-from': scaleMaskImagePosition()\n }],\n 'mask-image-b-to-pos': [{\n 'mask-b-to': scaleMaskImagePosition()\n }],\n 'mask-image-b-from-color': [{\n 'mask-b-from': scaleColor()\n }],\n 'mask-image-b-to-color': [{\n 'mask-b-to': scaleColor()\n }],\n 'mask-image-l-from-pos': [{\n 'mask-l-from': scaleMaskImagePosition()\n }],\n 'mask-image-l-to-pos': [{\n 'mask-l-to': scaleMaskImagePosition()\n }],\n 'mask-image-l-from-color': [{\n 'mask-l-from': scaleColor()\n }],\n 'mask-image-l-to-color': [{\n 'mask-l-to': scaleColor()\n }],\n 'mask-image-x-from-pos': [{\n 'mask-x-from': scaleMaskImagePosition()\n }],\n 'mask-image-x-to-pos': [{\n 'mask-x-to': scaleMaskImagePosition()\n }],\n 'mask-image-x-from-color': [{\n 'mask-x-from': scaleColor()\n }],\n 'mask-image-x-to-color': [{\n 'mask-x-to': scaleColor()\n }],\n 'mask-image-y-from-pos': [{\n 'mask-y-from': scaleMaskImagePosition()\n }],\n 'mask-image-y-to-pos': [{\n 'mask-y-to': scaleMaskImagePosition()\n }],\n 'mask-image-y-from-color': [{\n 'mask-y-from': scaleColor()\n }],\n 'mask-image-y-to-color': [{\n 'mask-y-to': scaleColor()\n }],\n 'mask-image-radial': [{\n 'mask-radial': [isArbitraryVariable, isArbitraryValue]\n }],\n 'mask-image-radial-from-pos': [{\n 'mask-radial-from': scaleMaskImagePosition()\n }],\n 'mask-image-radial-to-pos': [{\n 'mask-radial-to': scaleMaskImagePosition()\n }],\n 'mask-image-radial-from-color': [{\n 'mask-radial-from': scaleColor()\n }],\n 'mask-image-radial-to-color': [{\n 'mask-radial-to': scaleColor()\n }],\n 'mask-image-radial-shape': [{\n 'mask-radial': ['circle', 'ellipse']\n }],\n 'mask-image-radial-size': [{\n 'mask-radial': [{\n closest: ['side', 'corner'],\n farthest: ['side', 'corner']\n }]\n }],\n 'mask-image-radial-pos': [{\n 'mask-radial-at': scalePosition()\n }],\n 'mask-image-conic-pos': [{\n 'mask-conic': [isNumber]\n }],\n 'mask-image-conic-from-pos': [{\n 'mask-conic-from': scaleMaskImagePosition()\n }],\n 'mask-image-conic-to-pos': [{\n 'mask-conic-to': scaleMaskImagePosition()\n }],\n 'mask-image-conic-from-color': [{\n 'mask-conic-from': scaleColor()\n }],\n 'mask-image-conic-to-color': [{\n 'mask-conic-to': scaleColor()\n }],\n /**\n * Mask Mode\n * @see https://tailwindcss.com/docs/mask-mode\n */\n 'mask-mode': [{\n mask: ['alpha', 'luminance', 'match']\n }],\n /**\n * Mask Origin\n * @see https://tailwindcss.com/docs/mask-origin\n */\n 'mask-origin': [{\n 'mask-origin': ['border', 'padding', 'content', 'fill', 'stroke', 'view']\n }],\n /**\n * Mask Position\n * @see https://tailwindcss.com/docs/mask-position\n */\n 'mask-position': [{\n mask: scaleBgPosition()\n }],\n /**\n * Mask Repeat\n * @see https://tailwindcss.com/docs/mask-repeat\n */\n 'mask-repeat': [{\n mask: scaleBgRepeat()\n }],\n /**\n * Mask Size\n * @see https://tailwindcss.com/docs/mask-size\n */\n 'mask-size': [{\n mask: scaleBgSize()\n }],\n /**\n * Mask Type\n * @see https://tailwindcss.com/docs/mask-type\n */\n 'mask-type': [{\n 'mask-type': ['alpha', 'luminance']\n }],\n /**\n * Mask Image\n * @see https://tailwindcss.com/docs/mask-image\n */\n 'mask-image': [{\n mask: ['none', isArbitraryVariable, isArbitraryValue]\n }],\n // ---------------\n // --- Filters ---\n // ---------------\n /**\n * Filter\n * @see https://tailwindcss.com/docs/filter\n */\n filter: [{\n filter: [\n // Deprecated since Tailwind CSS v3.0.0\n '', 'none', isArbitraryVariable, isArbitraryValue]\n }],\n /**\n * Blur\n * @see https://tailwindcss.com/docs/blur\n */\n blur: [{\n blur: scaleBlur()\n }],\n /**\n * Brightness\n * @see https://tailwindcss.com/docs/brightness\n */\n brightness: [{\n brightness: [isNumber, isArbitraryVariable, isArbitraryValue]\n }],\n /**\n * Contrast\n * @see https://tailwindcss.com/docs/contrast\n */\n contrast: [{\n contrast: [isNumber, isArbitraryVariable, isArbitraryValue]\n }],\n /**\n * Drop Shadow\n * @see https://tailwindcss.com/docs/drop-shadow\n */\n 'drop-shadow': [{\n 'drop-shadow': [\n // Deprecated since Tailwind CSS v4.0.0\n '', 'none', themeDropShadow, isArbitraryVariableShadow, isArbitraryShadow]\n }],\n /**\n * Drop Shadow Color\n * @see https://tailwindcss.com/docs/filter-drop-shadow#setting-the-shadow-color\n */\n 'drop-shadow-color': [{\n 'drop-shadow': scaleColor()\n }],\n /**\n * Grayscale\n * @see https://tailwindcss.com/docs/grayscale\n */\n grayscale: [{\n grayscale: ['', isNumber, isArbitraryVariable, isArbitraryValue]\n }],\n /**\n * Hue Rotate\n * @see https://tailwindcss.com/docs/hue-rotate\n */\n 'hue-rotate': [{\n 'hue-rotate': [isNumber, isArbitraryVariable, isArbitraryValue]\n }],\n /**\n * Invert\n * @see https://tailwindcss.com/docs/invert\n */\n invert: [{\n invert: ['', isNumber, isArbitraryVariable, isArbitraryValue]\n }],\n /**\n * Saturate\n * @see https://tailwindcss.com/docs/saturate\n */\n saturate: [{\n saturate: [isNumber, isArbitraryVariable, isArbitraryValue]\n }],\n /**\n * Sepia\n * @see https://tailwindcss.com/docs/sepia\n */\n sepia: [{\n sepia: ['', isNumber, isArbitraryVariable, isArbitraryValue]\n }],\n /**\n * Backdrop Filter\n * @see https://tailwindcss.com/docs/backdrop-filter\n */\n 'backdrop-filter': [{\n 'backdrop-filter': [\n // Deprecated since Tailwind CSS v3.0.0\n '', 'none', isArbitraryVariable, isArbitraryValue]\n }],\n /**\n * Backdrop Blur\n * @see https://tailwindcss.com/docs/backdrop-blur\n */\n 'backdrop-blur': [{\n 'backdrop-blur': scaleBlur()\n }],\n /**\n * Backdrop Brightness\n * @see https://tailwindcss.com/docs/backdrop-brightness\n */\n 'backdrop-brightness': [{\n 'backdrop-brightness': [isNumber, isArbitraryVariable, isArbitraryValue]\n }],\n /**\n * Backdrop Contrast\n * @see https://tailwindcss.com/docs/backdrop-contrast\n */\n 'backdrop-contrast': [{\n 'backdrop-contrast': [isNumber, isArbitraryVariable, isArbitraryValue]\n }],\n /**\n * Backdrop Grayscale\n * @see https://tailwindcss.com/docs/backdrop-grayscale\n */\n 'backdrop-grayscale': [{\n 'backdrop-grayscale': ['', isNumber, isArbitraryVariable, isArbitraryValue]\n }],\n /**\n * Backdrop Hue Rotate\n * @see https://tailwindcss.com/docs/backdrop-hue-rotate\n */\n 'backdrop-hue-rotate': [{\n 'backdrop-hue-rotate': [isNumber, isArbitraryVariable, isArbitraryValue]\n }],\n /**\n * Backdrop Invert\n * @see https://tailwindcss.com/docs/backdrop-invert\n */\n 'backdrop-invert': [{\n 'backdrop-invert': ['', isNumber, isArbitraryVariable, isArbitraryValue]\n }],\n /**\n * Backdrop Opacity\n * @see https://tailwindcss.com/docs/backdrop-opacity\n */\n 'backdrop-opacity': [{\n 'backdrop-opacity': [isNumber, isArbitraryVariable, isArbitraryValue]\n }],\n /**\n * Backdrop Saturate\n * @see https://tailwindcss.com/docs/backdrop-saturate\n */\n 'backdrop-saturate': [{\n 'backdrop-saturate': [isNumber, isArbitraryVariable, isArbitraryValue]\n }],\n /**\n * Backdrop Sepia\n * @see https://tailwindcss.com/docs/backdrop-sepia\n */\n 'backdrop-sepia': [{\n 'backdrop-sepia': ['', isNumber, isArbitraryVariable, isArbitraryValue]\n }],\n // --------------\n // --- Tables ---\n // --------------\n /**\n * Border Collapse\n * @see https://tailwindcss.com/docs/border-collapse\n */\n 'border-collapse': [{\n border: ['collapse', 'separate']\n }],\n /**\n * Border Spacing\n * @see https://tailwindcss.com/docs/border-spacing\n */\n 'border-spacing': [{\n 'border-spacing': scaleUnambiguousSpacing()\n }],\n /**\n * Border Spacing X\n * @see https://tailwindcss.com/docs/border-spacing\n */\n 'border-spacing-x': [{\n 'border-spacing-x': scaleUnambiguousSpacing()\n }],\n /**\n * Border Spacing Y\n * @see https://tailwindcss.com/docs/border-spacing\n */\n 'border-spacing-y': [{\n 'border-spacing-y': scaleUnambiguousSpacing()\n }],\n /**\n * Table Layout\n * @see https://tailwindcss.com/docs/table-layout\n */\n 'table-layout': [{\n table: ['auto', 'fixed']\n }],\n /**\n * Caption Side\n * @see https://tailwindcss.com/docs/caption-side\n */\n caption: [{\n caption: ['top', 'bottom']\n }],\n // ---------------------------------\n // --- Transitions and Animation ---\n // ---------------------------------\n /**\n * Transition Property\n * @see https://tailwindcss.com/docs/transition-property\n */\n transition: [{\n transition: ['', 'all', 'colors', 'opacity', 'shadow', 'transform', 'none', isArbitraryVariable, isArbitraryValue]\n }],\n /**\n * Transition Behavior\n * @see https://tailwindcss.com/docs/transition-behavior\n */\n 'transition-behavior': [{\n transition: ['normal', 'discrete']\n }],\n /**\n * Transition Duration\n * @see https://tailwindcss.com/docs/transition-duration\n */\n duration: [{\n duration: [isNumber, 'initial', isArbitraryVariable, isArbitraryValue]\n }],\n /**\n * Transition Timing Function\n * @see https://tailwindcss.com/docs/transition-timing-function\n */\n ease: [{\n ease: ['linear', 'initial', themeEase, isArbitraryVariable, isArbitraryValue]\n }],\n /**\n * Transition Delay\n * @see https://tailwindcss.com/docs/transition-delay\n */\n delay: [{\n delay: [isNumber, isArbitraryVariable, isArbitraryValue]\n }],\n /**\n * Animation\n * @see https://tailwindcss.com/docs/animation\n */\n animate: [{\n animate: ['none', themeAnimate, isArbitraryVariable, isArbitraryValue]\n }],\n // ------------------\n // --- Transforms ---\n // ------------------\n /**\n * Backface Visibility\n * @see https://tailwindcss.com/docs/backface-visibility\n */\n backface: [{\n backface: ['hidden', 'visible']\n }],\n /**\n * Perspective\n * @see https://tailwindcss.com/docs/perspective\n */\n perspective: [{\n perspective: [themePerspective, isArbitraryVariable, isArbitraryValue]\n }],\n /**\n * Perspective Origin\n * @see https://tailwindcss.com/docs/perspective-origin\n */\n 'perspective-origin': [{\n 'perspective-origin': scalePositionWithArbitrary()\n }],\n /**\n * Rotate\n * @see https://tailwindcss.com/docs/rotate\n */\n rotate: [{\n rotate: scaleRotate()\n }],\n /**\n * Rotate X\n * @see https://tailwindcss.com/docs/rotate\n */\n 'rotate-x': [{\n 'rotate-x': scaleRotate()\n }],\n /**\n * Rotate Y\n * @see https://tailwindcss.com/docs/rotate\n */\n 'rotate-y': [{\n 'rotate-y': scaleRotate()\n }],\n /**\n * Rotate Z\n * @see https://tailwindcss.com/docs/rotate\n */\n 'rotate-z': [{\n 'rotate-z': scaleRotate()\n }],\n /**\n * Scale\n * @see https://tailwindcss.com/docs/scale\n */\n scale: [{\n scale: scaleScale()\n }],\n /**\n * Scale X\n * @see https://tailwindcss.com/docs/scale\n */\n 'scale-x': [{\n 'scale-x': scaleScale()\n }],\n /**\n * Scale Y\n * @see https://tailwindcss.com/docs/scale\n */\n 'scale-y': [{\n 'scale-y': scaleScale()\n }],\n /**\n * Scale Z\n * @see https://tailwindcss.com/docs/scale\n */\n 'scale-z': [{\n 'scale-z': scaleScale()\n }],\n /**\n * Scale 3D\n * @see https://tailwindcss.com/docs/scale\n */\n 'scale-3d': ['scale-3d'],\n /**\n * Skew\n * @see https://tailwindcss.com/docs/skew\n */\n skew: [{\n skew: scaleSkew()\n }],\n /**\n * Skew X\n * @see https://tailwindcss.com/docs/skew\n */\n 'skew-x': [{\n 'skew-x': scaleSkew()\n }],\n /**\n * Skew Y\n * @see https://tailwindcss.com/docs/skew\n */\n 'skew-y': [{\n 'skew-y': scaleSkew()\n }],\n /**\n * Transform\n * @see https://tailwindcss.com/docs/transform\n */\n transform: [{\n transform: [isArbitraryVariable, isArbitraryValue, '', 'none', 'gpu', 'cpu']\n }],\n /**\n * Transform Origin\n * @see https://tailwindcss.com/docs/transform-origin\n */\n 'transform-origin': [{\n origin: scalePositionWithArbitrary()\n }],\n /**\n * Transform Style\n * @see https://tailwindcss.com/docs/transform-style\n */\n 'transform-style': [{\n transform: ['3d', 'flat']\n }],\n /**\n * Translate\n * @see https://tailwindcss.com/docs/translate\n */\n translate: [{\n translate: scaleTranslate()\n }],\n /**\n * Translate X\n * @see https://tailwindcss.com/docs/translate\n */\n 'translate-x': [{\n 'translate-x': scaleTranslate()\n }],\n /**\n * Translate Y\n * @see https://tailwindcss.com/docs/translate\n */\n 'translate-y': [{\n 'translate-y': scaleTranslate()\n }],\n /**\n * Translate Z\n * @see https://tailwindcss.com/docs/translate\n */\n 'translate-z': [{\n 'translate-z': scaleTranslate()\n }],\n /**\n * Translate None\n * @see https://tailwindcss.com/docs/translate\n */\n 'translate-none': ['translate-none'],\n // ---------------------\n // --- Interactivity ---\n // ---------------------\n /**\n * Accent Color\n * @see https://tailwindcss.com/docs/accent-color\n */\n accent: [{\n accent: scaleColor()\n }],\n /**\n * Appearance\n * @see https://tailwindcss.com/docs/appearance\n */\n appearance: [{\n appearance: ['none', 'auto']\n }],\n /**\n * Caret Color\n * @see https://tailwindcss.com/docs/just-in-time-mode#caret-color-utilities\n */\n 'caret-color': [{\n caret: scaleColor()\n }],\n /**\n * Color Scheme\n * @see https://tailwindcss.com/docs/color-scheme\n */\n 'color-scheme': [{\n scheme: ['normal', 'dark', 'light', 'light-dark', 'only-dark', 'only-light']\n }],\n /**\n * Cursor\n * @see https://tailwindcss.com/docs/cursor\n */\n cursor: [{\n cursor: ['auto', 'default', 'pointer', 'wait', 'text', 'move', 'help', 'not-allowed', 'none', 'context-menu', 'progress', 'cell', 'crosshair', 'vertical-text', 'alias', 'copy', 'no-drop', 'grab', 'grabbing', 'all-scroll', 'col-resize', 'row-resize', 'n-resize', 'e-resize', 's-resize', 'w-resize', 'ne-resize', 'nw-resize', 'se-resize', 'sw-resize', 'ew-resize', 'ns-resize', 'nesw-resize', 'nwse-resize', 'zoom-in', 'zoom-out', isArbitraryVariable, isArbitraryValue]\n }],\n /**\n * Field Sizing\n * @see https://tailwindcss.com/docs/field-sizing\n */\n 'field-sizing': [{\n 'field-sizing': ['fixed', 'content']\n }],\n /**\n * Pointer Events\n * @see https://tailwindcss.com/docs/pointer-events\n */\n 'pointer-events': [{\n 'pointer-events': ['auto', 'none']\n }],\n /**\n * Resize\n * @see https://tailwindcss.com/docs/resize\n */\n resize: [{\n resize: ['none', '', 'y', 'x']\n }],\n /**\n * Scroll Behavior\n * @see https://tailwindcss.com/docs/scroll-behavior\n */\n 'scroll-behavior': [{\n scroll: ['auto', 'smooth']\n }],\n /**\n * Scroll Margin\n * @see https://tailwindcss.com/docs/scroll-margin\n */\n 'scroll-m': [{\n 'scroll-m': scaleUnambiguousSpacing()\n }],\n /**\n * Scroll Margin X\n * @see https://tailwindcss.com/docs/scroll-margin\n */\n 'scroll-mx': [{\n 'scroll-mx': scaleUnambiguousSpacing()\n }],\n /**\n * Scroll Margin Y\n * @see https://tailwindcss.com/docs/scroll-margin\n */\n 'scroll-my': [{\n 'scroll-my': scaleUnambiguousSpacing()\n }],\n /**\n * Scroll Margin Start\n * @see https://tailwindcss.com/docs/scroll-margin\n */\n 'scroll-ms': [{\n 'scroll-ms': scaleUnambiguousSpacing()\n }],\n /**\n * Scroll Margin End\n * @see https://tailwindcss.com/docs/scroll-margin\n */\n 'scroll-me': [{\n 'scroll-me': scaleUnambiguousSpacing()\n }],\n /**\n * Scroll Margin Top\n * @see https://tailwindcss.com/docs/scroll-margin\n */\n 'scroll-mt': [{\n 'scroll-mt': scaleUnambiguousSpacing()\n }],\n /**\n * Scroll Margin Right\n * @see https://tailwindcss.com/docs/scroll-margin\n */\n 'scroll-mr': [{\n 'scroll-mr': scaleUnambiguousSpacing()\n }],\n /**\n * Scroll Margin Bottom\n * @see https://tailwindcss.com/docs/scroll-margin\n */\n 'scroll-mb': [{\n 'scroll-mb': scaleUnambiguousSpacing()\n }],\n /**\n * Scroll Margin Left\n * @see https://tailwindcss.com/docs/scroll-margin\n */\n 'scroll-ml': [{\n 'scroll-ml': scaleUnambiguousSpacing()\n }],\n /**\n * Scroll Padding\n * @see https://tailwindcss.com/docs/scroll-padding\n */\n 'scroll-p': [{\n 'scroll-p': scaleUnambiguousSpacing()\n }],\n /**\n * Scroll Padding X\n * @see https://tailwindcss.com/docs/scroll-padding\n */\n 'scroll-px': [{\n 'scroll-px': scaleUnambiguousSpacing()\n }],\n /**\n * Scroll Padding Y\n * @see https://tailwindcss.com/docs/scroll-padding\n */\n 'scroll-py': [{\n 'scroll-py': scaleUnambiguousSpacing()\n }],\n /**\n * Scroll Padding Start\n * @see https://tailwindcss.com/docs/scroll-padding\n */\n 'scroll-ps': [{\n 'scroll-ps': scaleUnambiguousSpacing()\n }],\n /**\n * Scroll Padding End\n * @see https://tailwindcss.com/docs/scroll-padding\n */\n 'scroll-pe': [{\n 'scroll-pe': scaleUnambiguousSpacing()\n }],\n /**\n * Scroll Padding Top\n * @see https://tailwindcss.com/docs/scroll-padding\n */\n 'scroll-pt': [{\n 'scroll-pt': scaleUnambiguousSpacing()\n }],\n /**\n * Scroll Padding Right\n * @see https://tailwindcss.com/docs/scroll-padding\n */\n 'scroll-pr': [{\n 'scroll-pr': scaleUnambiguousSpacing()\n }],\n /**\n * Scroll Padding Bottom\n * @see https://tailwindcss.com/docs/scroll-padding\n */\n 'scroll-pb': [{\n 'scroll-pb': scaleUnambiguousSpacing()\n }],\n /**\n * Scroll Padding Left\n * @see https://tailwindcss.com/docs/scroll-padding\n */\n 'scroll-pl': [{\n 'scroll-pl': scaleUnambiguousSpacing()\n }],\n /**\n * Scroll Snap Align\n * @see https://tailwindcss.com/docs/scroll-snap-align\n */\n 'snap-align': [{\n snap: ['start', 'end', 'center', 'align-none']\n }],\n /**\n * Scroll Snap Stop\n * @see https://tailwindcss.com/docs/scroll-snap-stop\n */\n 'snap-stop': [{\n snap: ['normal', 'always']\n }],\n /**\n * Scroll Snap Type\n * @see https://tailwindcss.com/docs/scroll-snap-type\n */\n 'snap-type': [{\n snap: ['none', 'x', 'y', 'both']\n }],\n /**\n * Scroll Snap Type Strictness\n * @see https://tailwindcss.com/docs/scroll-snap-type\n */\n 'snap-strictness': [{\n snap: ['mandatory', 'proximity']\n }],\n /**\n * Touch Action\n * @see https://tailwindcss.com/docs/touch-action\n */\n touch: [{\n touch: ['auto', 'none', 'manipulation']\n }],\n /**\n * Touch Action X\n * @see https://tailwindcss.com/docs/touch-action\n */\n 'touch-x': [{\n 'touch-pan': ['x', 'left', 'right']\n }],\n /**\n * Touch Action Y\n * @see https://tailwindcss.com/docs/touch-action\n */\n 'touch-y': [{\n 'touch-pan': ['y', 'up', 'down']\n }],\n /**\n * Touch Action Pinch Zoom\n * @see https://tailwindcss.com/docs/touch-action\n */\n 'touch-pz': ['touch-pinch-zoom'],\n /**\n * User Select\n * @see https://tailwindcss.com/docs/user-select\n */\n select: [{\n select: ['none', 'text', 'all', 'auto']\n }],\n /**\n * Will Change\n * @see https://tailwindcss.com/docs/will-change\n */\n 'will-change': [{\n 'will-change': ['auto', 'scroll', 'contents', 'transform', isArbitraryVariable, isArbitraryValue]\n }],\n // -----------\n // --- SVG ---\n // -----------\n /**\n * Fill\n * @see https://tailwindcss.com/docs/fill\n */\n fill: [{\n fill: ['none', ...scaleColor()]\n }],\n /**\n * Stroke Width\n * @see https://tailwindcss.com/docs/stroke-width\n */\n 'stroke-w': [{\n stroke: [isNumber, isArbitraryVariableLength, isArbitraryLength, isArbitraryNumber]\n }],\n /**\n * Stroke\n * @see https://tailwindcss.com/docs/stroke\n */\n stroke: [{\n stroke: ['none', ...scaleColor()]\n }],\n // ---------------------\n // --- Accessibility ---\n // ---------------------\n /**\n * Forced Color Adjust\n * @see https://tailwindcss.com/docs/forced-color-adjust\n */\n 'forced-color-adjust': [{\n 'forced-color-adjust': ['auto', 'none']\n }]\n },\n conflictingClassGroups: {\n overflow: ['overflow-x', 'overflow-y'],\n overscroll: ['overscroll-x', 'overscroll-y'],\n inset: ['inset-x', 'inset-y', 'start', 'end', 'top', 'right', 'bottom', 'left'],\n 'inset-x': ['right', 'left'],\n 'inset-y': ['top', 'bottom'],\n flex: ['basis', 'grow', 'shrink'],\n gap: ['gap-x', 'gap-y'],\n p: ['px', 'py', 'ps', 'pe', 'pt', 'pr', 'pb', 'pl'],\n px: ['pr', 'pl'],\n py: ['pt', 'pb'],\n m: ['mx', 'my', 'ms', 'me', 'mt', 'mr', 'mb', 'ml'],\n mx: ['mr', 'ml'],\n my: ['mt', 'mb'],\n size: ['w', 'h'],\n 'font-size': ['leading'],\n 'fvn-normal': ['fvn-ordinal', 'fvn-slashed-zero', 'fvn-figure', 'fvn-spacing', 'fvn-fraction'],\n 'fvn-ordinal': ['fvn-normal'],\n 'fvn-slashed-zero': ['fvn-normal'],\n 'fvn-figure': ['fvn-normal'],\n 'fvn-spacing': ['fvn-normal'],\n 'fvn-fraction': ['fvn-normal'],\n 'line-clamp': ['display', 'overflow'],\n rounded: ['rounded-s', 'rounded-e', 'rounded-t', 'rounded-r', 'rounded-b', 'rounded-l', 'rounded-ss', 'rounded-se', 'rounded-ee', 'rounded-es', 'rounded-tl', 'rounded-tr', 'rounded-br', 'rounded-bl'],\n 'rounded-s': ['rounded-ss', 'rounded-es'],\n 'rounded-e': ['rounded-se', 'rounded-ee'],\n 'rounded-t': ['rounded-tl', 'rounded-tr'],\n 'rounded-r': ['rounded-tr', 'rounded-br'],\n 'rounded-b': ['rounded-br', 'rounded-bl'],\n 'rounded-l': ['rounded-tl', 'rounded-bl'],\n 'border-spacing': ['border-spacing-x', 'border-spacing-y'],\n 'border-w': ['border-w-x', 'border-w-y', 'border-w-s', 'border-w-e', 'border-w-t', 'border-w-r', 'border-w-b', 'border-w-l'],\n 'border-w-x': ['border-w-r', 'border-w-l'],\n 'border-w-y': ['border-w-t', 'border-w-b'],\n 'border-color': ['border-color-x', 'border-color-y', 'border-color-s', 'border-color-e', 'border-color-t', 'border-color-r', 'border-color-b', 'border-color-l'],\n 'border-color-x': ['border-color-r', 'border-color-l'],\n 'border-color-y': ['border-color-t', 'border-color-b'],\n translate: ['translate-x', 'translate-y', 'translate-none'],\n 'translate-none': ['translate', 'translate-x', 'translate-y', 'translate-z'],\n 'scroll-m': ['scroll-mx', 'scroll-my', 'scroll-ms', 'scroll-me', 'scroll-mt', 'scroll-mr', 'scroll-mb', 'scroll-ml'],\n 'scroll-mx': ['scroll-mr', 'scroll-ml'],\n 'scroll-my': ['scroll-mt', 'scroll-mb'],\n 'scroll-p': ['scroll-px', 'scroll-py', 'scroll-ps', 'scroll-pe', 'scroll-pt', 'scroll-pr', 'scroll-pb', 'scroll-pl'],\n 'scroll-px': ['scroll-pr', 'scroll-pl'],\n 'scroll-py': ['scroll-pt', 'scroll-pb'],\n touch: ['touch-x', 'touch-y', 'touch-pz'],\n 'touch-x': ['touch'],\n 'touch-y': ['touch'],\n 'touch-pz': ['touch']\n },\n conflictingClassGroupModifiers: {\n 'font-size': ['leading']\n },\n orderSensitiveModifiers: ['*', '**', 'after', 'backdrop', 'before', 'details-content', 'file', 'first-letter', 'first-line', 'marker', 'placeholder', 'selection']\n };\n};\n\n/**\n * @param baseConfig Config where other config will be merged into. This object will be mutated.\n * @param configExtension Partial config to merge into the `baseConfig`.\n */\nconst mergeConfigs = (baseConfig, {\n cacheSize,\n prefix,\n experimentalParseClassName,\n extend = {},\n override = {}\n}) => {\n overrideProperty(baseConfig, 'cacheSize', cacheSize);\n overrideProperty(baseConfig, 'prefix', prefix);\n overrideProperty(baseConfig, 'experimentalParseClassName', experimentalParseClassName);\n overrideConfigProperties(baseConfig.theme, override.theme);\n overrideConfigProperties(baseConfig.classGroups, override.classGroups);\n overrideConfigProperties(baseConfig.conflictingClassGroups, override.conflictingClassGroups);\n overrideConfigProperties(baseConfig.conflictingClassGroupModifiers, override.conflictingClassGroupModifiers);\n overrideProperty(baseConfig, 'orderSensitiveModifiers', override.orderSensitiveModifiers);\n mergeConfigProperties(baseConfig.theme, extend.theme);\n mergeConfigProperties(baseConfig.classGroups, extend.classGroups);\n mergeConfigProperties(baseConfig.conflictingClassGroups, extend.conflictingClassGroups);\n mergeConfigProperties(baseConfig.conflictingClassGroupModifiers, extend.conflictingClassGroupModifiers);\n mergeArrayProperties(baseConfig, extend, 'orderSensitiveModifiers');\n return baseConfig;\n};\nconst overrideProperty = (baseObject, overrideKey, overrideValue) => {\n if (overrideValue !== undefined) {\n baseObject[overrideKey] = overrideValue;\n }\n};\nconst overrideConfigProperties = (baseObject, overrideObject) => {\n if (overrideObject) {\n for (const key in overrideObject) {\n overrideProperty(baseObject, key, overrideObject[key]);\n }\n }\n};\nconst mergeConfigProperties = (baseObject, mergeObject) => {\n if (mergeObject) {\n for (const key in mergeObject) {\n mergeArrayProperties(baseObject, mergeObject, key);\n }\n }\n};\nconst mergeArrayProperties = (baseObject, mergeObject, key) => {\n const mergeValue = mergeObject[key];\n if (mergeValue !== undefined) {\n baseObject[key] = baseObject[key] ? baseObject[key].concat(mergeValue) : mergeValue;\n }\n};\nconst extendTailwindMerge = (configExtension, ...createConfig) => typeof configExtension === 'function' ? createTailwindMerge(getDefaultConfig, configExtension, ...createConfig) : createTailwindMerge(() => mergeConfigs(getDefaultConfig(), configExtension), ...createConfig);\nconst twMerge = /*#__PURE__*/createTailwindMerge(getDefaultConfig);\nexport { createTailwindMerge, extendTailwindMerge, fromTheme, getDefaultConfig, mergeConfigs, twJoin, twMerge, validators };\n//# sourceMappingURL=bundle-mjs.mjs.map\n","/**\n * Design System Utilities\n *\n * Default design system and utility functions\n */\n\nimport { clsx, type ClassValue } from \"clsx\";\nimport { twMerge } from \"tailwind-merge\";\nimport type { SectionRendererDesignSystem } from \"../types\";\n\n/**\n * Utility function for merging Tailwind CSS classes\n * Uses clsx for conditional classes and tailwind-merge to resolve conflicts\n *\n * @param inputs - Class values to merge\n * @returns Merged class string\n */\nexport function cn(...inputs: ClassValue[]) {\n\treturn twMerge(clsx(inputs));\n}\n\n/**\n * Default Design System\n *\n * Minimal design system for rendering without custom configuration\n * Provides sensible defaults for all plugins\n */\nexport const defaultDesignSystem: SectionRendererDesignSystem = {\n\t/**\n\t * Font System with Heading Scale\n\t */\n\tfonts: {\n\t\tgetPreset: (key: string) => {\n\t\t\tconst fontMap: Record<string, any> = {\n\t\t\t\t// Heading scale (h1-h6)\n\t\t\t\th1: {\n\t\t\t\t\tfamily: \"Inter, -apple-system, BlinkMacSystemFont, sans-serif\",\n\t\t\t\t\tsize: \"48px\",\n\t\t\t\t\tlineHeight: \"1.1\",\n\t\t\t\t\tweight: \"800\",\n\t\t\t\t},\n\t\t\t\th2: {\n\t\t\t\t\tfamily: \"Inter, -apple-system, BlinkMacSystemFont, sans-serif\",\n\t\t\t\t\tsize: \"36px\",\n\t\t\t\t\tlineHeight: \"1.2\",\n\t\t\t\t\tweight: \"700\",\n\t\t\t\t},\n\t\t\t\th3: {\n\t\t\t\t\tfamily: \"Inter, -apple-system, BlinkMacSystemFont, sans-serif\",\n\t\t\t\t\tsize: \"28px\",\n\t\t\t\t\tlineHeight: \"1.25\",\n\t\t\t\t\tweight: \"700\",\n\t\t\t\t},\n\t\t\t\th4: {\n\t\t\t\t\tfamily: \"Inter, -apple-system, BlinkMacSystemFont, sans-serif\",\n\t\t\t\t\tsize: \"24px\",\n\t\t\t\t\tlineHeight: \"1.3\",\n\t\t\t\t\tweight: \"600\",\n\t\t\t\t},\n\t\t\t\th5: {\n\t\t\t\t\tfamily: \"Inter, -apple-system, BlinkMacSystemFont, sans-serif\",\n\t\t\t\t\tsize: \"20px\",\n\t\t\t\t\tlineHeight: \"1.4\",\n\t\t\t\t\tweight: \"600\",\n\t\t\t\t},\n\t\t\t\th6: {\n\t\t\t\t\tfamily: \"Inter, -apple-system, BlinkMacSystemFont, sans-serif\",\n\t\t\t\t\tsize: \"16px\",\n\t\t\t\t\tlineHeight: \"1.4\",\n\t\t\t\t\tweight: \"600\",\n\t\t\t\t},\n\t\t\t\t// Legacy keys for backwards compatibility\n\t\t\t\theading: {\n\t\t\t\t\tfamily: \"Inter, -apple-system, BlinkMacSystemFont, sans-serif\",\n\t\t\t\t\tsize: \"32px\",\n\t\t\t\t\tlineHeight: \"1.2\",\n\t\t\t\t\tweight: \"bold\",\n\t\t\t\t},\n\t\t\t\tsubheading: {\n\t\t\t\t\tfamily: \"Inter, -apple-system, BlinkMacSystemFont, sans-serif\",\n\t\t\t\t\tsize: \"24px\",\n\t\t\t\t\tlineHeight: \"1.3\",\n\t\t\t\t\tweight: \"600\",\n\t\t\t\t},\n\t\t\t\tbody: {\n\t\t\t\t\tfamily: \"Inter, -apple-system, BlinkMacSystemFont, sans-serif\",\n\t\t\t\t\tsize: \"16px\",\n\t\t\t\t\tlineHeight: \"1.5\",\n\t\t\t\t\tweight: \"normal\",\n\t\t\t\t},\n\t\t\t\tsmall: {\n\t\t\t\t\tfamily: \"Inter, -apple-system, BlinkMacSystemFont, sans-serif\",\n\t\t\t\t\tsize: \"14px\",\n\t\t\t\t\tlineHeight: \"1.4\",\n\t\t\t\t\tweight: \"normal\",\n\t\t\t\t},\n\t\t\t};\n\n\t\t\treturn (\n\t\t\t\tfontMap[key] || {\n\t\t\t\t\tfamily: \"Inter, -apple-system, BlinkMacSystemFont, sans-serif\",\n\t\t\t\t\tsize: \"16px\",\n\t\t\t\t\tlineHeight: \"1.5\",\n\t\t\t\t\tweight: \"normal\",\n\t\t\t\t}\n\t\t\t);\n\t\t},\n\t},\n\n\t/**\n\t * Color System\n\t */\n\tcolors: {\n\t\tgetPreset: (key: string) => {\n\t\t\tconst colorMap: Record<string, any> = {\n\t\t\t\tprimary: { value: \"#3b82f6\", opacity: 1 }, // blue-500\n\t\t\t\tsecondary: { value: \"#8b5cf6\", opacity: 1 }, // violet-500\n\t\t\t\ttext: { value: \"#1f2937\", opacity: 1 }, // gray-800\n\t\t\t\t\"text-light\": { value: \"#6b7280\", opacity: 1 }, // gray-500\n\t\t\t\tbackground: { value: \"#ffffff\", opacity: 1 },\n\t\t\t\tborder: { value: \"#e5e7eb\", opacity: 1 }, // gray-200\n\t\t\t};\n\n\t\t\treturn (\n\t\t\t\tcolorMap[key] || {\n\t\t\t\t\tvalue: \"#000000\",\n\t\t\t\t\topacity: 1,\n\t\t\t\t}\n\t\t\t);\n\t\t},\n\t},\n\n\t/**\n\t * Layout System\n\t */\n\tlayout: {\n\t\tgetPreset: (_key: string) => ({\n\t\t\tmaxWidth: \"1200px\",\n\t\t\tgap: \"16px\",\n\t\t\tpadding: \"16px\",\n\t\t\tmargin: \"0\",\n\t\t}),\n\t},\n\n\t/**\n\t * Spacing System (NEW responsive architecture)\n\t */\n\tspacing: {\n\t\tscale: [0, 4, 8, 12, 16, 20, 24, 32, 40, 48, 64, 80, 96, 128],\n\t\tscaleResponsive: new Map(),\n\t\tgetPreset: (presetId: string) => {\n\t\t\ttype BoxModel = { top: number; right: number; bottom: number; left: number };\n\t\t\t\n\t\t\t// Default box values\n\t\t\tconst defaultBox: BoxModel = { top: 16, right: 16, bottom: 16, left: 16 };\n\t\t\t\n\t\t\t// Spacing presets mapping\n\t\t\tconst spacingPresets: Record<string, { name: string; box: BoxModel }> = {\n\t\t\t\tnone: { name: 'None', box: { top: 0, right: 0, bottom: 0, left: 0 } },\n\t\t\t\tcompact: { name: 'Compact', box: { top: 8, right: 8, bottom: 8, left: 8 } },\n\t\t\t\tdefault: { name: 'Default', box: defaultBox },\n\t\t\t\tspacious: { name: 'Spacious', box: { top: 32, right: 32, bottom: 32, left: 32 } },\n\t\t\t\tloose: { name: 'Loose', box: { top: 48, right: 48, bottom: 48, left: 48 } },\n\t\t\t};\n\n\t\t\t// Get preset with fallback - use non-null assertion since 'default' key is defined above\n\t\t\tconst resolvedPreset = spacingPresets[presetId] ?? spacingPresets.default!;\n\n\t\t\t// Return SpacingPreset structure\n\t\t\treturn {\n\t\t\t\tpresetId: presetId,\n\t\t\t\tname: resolvedPreset.name,\n\t\t\t\tmargin: { mobile: resolvedPreset.box, tablet: resolvedPreset.box, desktop: resolvedPreset.box },\n\t\t\t\tpadding: { mobile: resolvedPreset.box, tablet: resolvedPreset.box, desktop: resolvedPreset.box },\n\t\t\t};\n\t\t},\n\t},\n\n\t/**\n\t * Button System\n\t */\n\tbuttons: {\n\t\tgetPreset: (presetId: string) => {\n\t\t\tconst sizeMap: Record<string, any> = {\n\t\t\t\tsm: {\n\t\t\t\t\tbutton_id: 'sm',\n\t\t\t\t\tname: 'Small',\n\t\t\t\t\tpadding: \"6px 12px\",\n\t\t\t\t\tfontSize: \"14px\",\n\t\t\t\t\ticonSize: \"16px\",\n\t\t\t\t\tminHeight: \"32px\",\n\t\t\t\t\tborderRadius: \"6px\",\n\t\t\t\t\tfontWeight: \"500\"\n\t\t\t\t},\n\t\t\t\tmd: {\n\t\t\t\t\tbutton_id: 'md',\n\t\t\t\t\tname: 'Medium',\n\t\t\t\t\tpadding: \"8px 20px\",\n\t\t\t\t\tfontSize: \"15px\",\n\t\t\t\t\ticonSize: \"18px\",\n\t\t\t\t\tminHeight: \"40px\",\n\t\t\t\t\tborderRadius: \"8px\",\n\t\t\t\t\tfontWeight: \"600\"\n\t\t\t\t},\n\t\t\t\tlg: {\n\t\t\t\t\tbutton_id: 'lg',\n\t\t\t\t\tname: 'Large',\n\t\t\t\t\tpadding: \"12px 24px\",\n\t\t\t\t\tfontSize: \"16px\",\n\t\t\t\t\ticonSize: \"20px\",\n\t\t\t\t\tminHeight: \"48px\",\n\t\t\t\t\tborderRadius: \"10px\",\n\t\t\t\t\tfontWeight: \"600\"\n\t\t\t\t}\n\t\t\t};\n\t\t\treturn sizeMap[presetId] || sizeMap.md;\n\t\t},\n\t\tlistPresets: () => {\n\t\t\treturn [\n\t\t\t\t{\n\t\t\t\t\tid: 'sm',\n\t\t\t\t\tpresetId: 'sm',\n\t\t\t\t\tname: 'Small',\n\t\t\t\t\tsize: 'sm',\n\t\t\t\t\tdisabledOpacity: 0.5,\n\t\t\t\t\tdefaultTransitionDuration: 200,\n\t\t\t\t\thoverTransitionDuration: 200,\n\t\t\t\t\tactiveTransitionDuration: 100,\n\t\t\t\t\tisDefault: false,\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tid: 'md',\n\t\t\t\t\tpresetId: 'md',\n\t\t\t\t\tname: 'Medium',\n\t\t\t\t\tsize: 'default',\n\t\t\t\t\tdisabledOpacity: 0.5,\n\t\t\t\t\tdefaultTransitionDuration: 200,\n\t\t\t\t\thoverTransitionDuration: 200,\n\t\t\t\t\tactiveTransitionDuration: 100,\n\t\t\t\t\tisDefault: true,\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tid: 'lg',\n\t\t\t\t\tpresetId: 'lg',\n\t\t\t\t\tname: 'Large',\n\t\t\t\t\tsize: 'lg',\n\t\t\t\t\tdisabledOpacity: 0.5,\n\t\t\t\t\tdefaultTransitionDuration: 200,\n\t\t\t\t\thoverTransitionDuration: 200,\n\t\t\t\t\tactiveTransitionDuration: 100,\n\t\t\t\t\tisDefault: false,\n\t\t\t\t},\n\t\t\t] as any;\n\t\t},\n\t},\n\n\t/**\n\t * Shadow System\n\t */\n\tshadows: {\n\t\tgetPreset: (key: string) => {\n\t\t\tconst shadowMap: Record<string, any> = {\n\t\t\t\tnone: { value: \"none\" },\n\t\t\t\tsm: { value: \"0 1px 2px 0 rgba(0, 0, 0, 0.05)\" },\n\t\t\t\tmd: {\n\t\t\t\t\tvalue: \"0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06)\",\n\t\t\t\t\tdark: \"0 4px 6px -1px rgba(0, 0, 0, 0.2)\",\n\t\t\t\t},\n\t\t\t\tlg: {\n\t\t\t\t\tvalue: \"0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05)\",\n\t\t\t\t\tdark: \"0 10px 15px -3px rgba(0, 0, 0, 0.3)\",\n\t\t\t\t},\n\t\t\t\txl: {\n\t\t\t\t\tvalue: \"0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04)\",\n\t\t\t\t\tdark: \"0 20px 25px -5px rgba(0, 0, 0, 0.3)\",\n\t\t\t\t},\n\t\t\t};\n\t\t\treturn shadowMap[key] || shadowMap.md;\n\t\t},\n\t},\n\n\t/**\n\t * Breakpoints System\n\t */\n\tbreakpoints: {\n\t\tgetConfig: () => ({\n\t\t\tmobile: { minWidth: 0, name: 'mobile' },\n\t\t\ttablet: { minWidth: 768, name: 'tablet' },\n\t\t\tdesktop: { minWidth: 1024, name: 'desktop' },\n\t\t}),\n\t},\n\n\t/**\n\t * Utility Functions\n\t */\n\tutils: {\n\t\tcn,\n\t},\n};\n\n/**\n * Create a custom design system by extending the default\n *\n * @param overrides - Partial design system to merge with defaults\n * @returns Complete design system\n */\nexport function createDesignSystem(\n\toverrides?: Partial<SectionRendererDesignSystem>,\n): SectionRendererDesignSystem {\n\treturn {\n\t\t...defaultDesignSystem,\n\t\t...overrides,\n\t\tutils: {\n\t\t\t...defaultDesignSystem.utils,\n\t\t\t...overrides?.utils,\n\t\t},\n\t};\n}\n\n/**\n * Story-ready dependencies object\n *\n * Pre-configured dependencies for Storybook stories.\n * Provides the correct structure expected by RendererProps.\n *\n * NOTE: To use the real Design System from PostgreSQL export:\n * 1. Import design-system.json\n * 2. Use createDesignSystemFromJson to convert it to PluginDesignSystem\n * 3. Use it in your stories\n *\n * @example\n * ```ts\n * import designSystemJson from '../../../../design-system/design-system.json';\n * import { createDesignSystemFromJson } from '@codefluss/section-renderer';\n *\n * const realDesignSystem = createDesignSystemFromJson(designSystemJson);\n * const storyDependencies = {\n * designSystem: realDesignSystem,\n * utils: { cn }\n * };\n * ```\n */\nexport const storyDependencies = {\n\tdesignSystem: defaultDesignSystem,\n\tutils: defaultDesignSystem.utils,\n};\n","/**\n * Sanitize className to remove Tailwind classes\n *\n * This utility removes Tailwind-like classes from user-provided className\n * to prevent Tailwind dependencies in exported sites.\n *\n * ⚠️ IMPORTANT: This is used by SSR renderers to ensure NO Tailwind\n * classes appear in the live site HTML output.\n *\n * @param className - The className string to sanitize\n * @returns Sanitized className without Tailwind classes\n */\n/**\n * Tailwind utility class patterns\n * These patterns match the most common Tailwind utility classes\n */\nconst TAILWIND_PATTERNS = [\n // Layout\n /^(flex|grid|inline-flex|inline-grid|inline-block|block|inline|hidden)$/,\n /^(flex-(row|col|wrap|nowrap|grow|shrink|1|auto|initial|none))$/,\n /^(items-(start|center|end|stretch|baseline))$/,\n /^(justify-(start|center|end|between|around|evenly))$/,\n /^(self-(start|center|end|stretch|auto))$/,\n /^(content-(start|center|end|between|around|evenly|stretch))$/,\n /^(place-(items|content|self)-(start|center|end|stretch))$/,\n // Typography\n /^(text-(xs|sm|base|lg|xl|2xl|3xl|4xl|5xl|6xl|7xl|8xl|9xl))$/,\n /^(font-(sans|serif|mono))$/,\n /^(font-(thin|extralight|light|normal|medium|semibold|bold|extrabold|black))$/,\n /^(text-(left|center|right|justify))$/,\n /^(leading-(none|tight|snug|normal|relaxed|loose|[0-9]+))$/,\n /^(tracking-(tighter|tight|normal|wide|wider|widest))$/,\n /^(text-(underline|overline|line-through|no-underline))$/,\n /^(decoration-(solid|double|dotted|dashed|wavy))$/,\n /^(underline-offset-[0-9]+)$/,\n /^(uppercase|lowercase|capitalize|normal-case)$/,\n /^(truncate)$/,\n /^(line-clamp-[0-9]+)$/,\n /^(whitespace-(normal|nowrap|pre|pre-line|pre-wrap|break-spaces))$/,\n /^(break-(normal|words|all|keep))$/,\n /^(prose(-sm|-lg|-xl|-2xl)?)$/,\n /^(align-(baseline|top|middle|bottom|text-top|text-bottom|sub|super))$/,\n // Colors - Background\n /^(bg-(transparent|current|inherit|white|black))$/,\n /^bg-(slate|gray|zinc|neutral|stone|red|orange|amber|yellow|lime|green|emerald|teal|cyan|sky|blue|indigo|violet|purple|fuchsia|pink|rose)-[0-9]+$/,\n /^bg-(primary|secondary|muted|accent|destructive|background|foreground|card|popover|border|input|ring)$/,\n // Colors - Text\n /^(text-(transparent|current|inherit|white|black))$/,\n /^text-(slate|gray|zinc|neutral|stone|red|orange|amber|yellow|lime|green|emerald|teal|cyan|sky|blue|indigo|violet|purple|fuchsia|pink|rose)-[0-9]+$/,\n /^text-(primary|secondary|muted|accent|destructive|foreground|muted-foreground)$/,\n // Colors - Border\n /^(border-(transparent|current|inherit|white|black))$/,\n /^border-(slate|gray|zinc|neutral|stone|red|orange|amber|yellow|lime|green|emerald|teal|cyan|sky|blue|indigo|violet|purple|fuchsia|pink|rose)-[0-9]+$/,\n /^border-(primary|secondary|muted|accent|destructive|border|input)$/,\n // Spacing - Padding\n /^(p-[0-9]+(\\.[0-9]+)?)$/,\n /^p(x|y)-([0-9]+(\\.[0-9]+)?|auto|px)$/,\n /^p(t|r|b|l|s|e)-([0-9]+(\\.[0-9]+)?|auto|px)$/,\n // Spacing - Margin\n /^(m-[0-9]+(\\.[0-9]+)?|-m-[0-9]+(\\.[0-9]+)?)$/,\n /^-?m(x|y)-([0-9]+(\\.[0-9]+)?|auto|px)$/,\n /^-?m(t|r|b|l|s|e)-([0-9]+(\\.[0-9]+)?|auto|px)$/,\n // Sizing - Width\n /^(w-(auto|full|screen|svw|lvw|dvw|min|max|fit|[0-9]+(\\.[0-9]+)?|[0-9]+\\/[0-9]+|px))$/,\n /^(min-w-(0|full|min|max|fit|[0-9]+))$/,\n /^(max-w-(none|full|min|max|fit|xs|sm|md|lg|xl|2xl|3xl|4xl|5xl|6xl|7xl|prose|screen-sm|screen-md|screen-lg|screen-xl|screen-2xl|[0-9]+))$/,\n // Sizing - Height\n /^(h-(auto|full|screen|svh|lvh|dvh|min|max|fit|[0-9]+(\\.[0-9]+)?|[0-9]+\\/[0-9]+|px))$/,\n /^(min-h-(0|full|min|max|fit|screen|svh|lvh|dvh|[0-9]+))$/,\n /^(max-h-(none|full|min|max|fit|screen|svh|lvh|dvh|[0-9]+))$/,\n // Gap\n /^(gap-[0-9]+(\\.[0-9]+)?|gap-x-[0-9]+(\\.[0-9]+)?|gap-y-[0-9]+(\\.[0-9]+)?)$/,\n /^(space-(x|y)-[0-9]+(\\.[0-9]+)?|space-(x|y)-reverse)$/,\n // Borders\n /^(border(-[0-9]+)?|border-(t|r|b|l|x|y)(-[0-9]+)?)$/,\n /^(rounded(-none|-sm|-md|-lg|-xl|-2xl|-3xl|-full)?|rounded-(t|r|b|l|tl|tr|br|bl)(-none|-sm|-md|-lg|-xl|-2xl|-3xl|-full)?)$/,\n /^(border-(solid|dashed|dotted|double|hidden|none))$/,\n /^(divide-(x|y)(-[0-9]+|-reverse)?|divide-(solid|dashed|dotted|double|none))$/,\n /^(outline(-none|-dashed|-dotted|-double)?|outline-[0-9]+|outline-offset-[0-9]+)$/,\n /^(ring(-[0-9]+)?|ring-inset|ring-offset-[0-9]+)$/,\n // Shadows\n /^(shadow(-sm|-md|-lg|-xl|-2xl|-inner|-none)?)$/,\n /^(drop-shadow(-sm|-md|-lg|-xl|-2xl|-none)?)$/,\n // Transitions & Animations\n /^(transition(-all|-colors|-opacity|-shadow|-transform|-none)?)$/,\n /^(duration-[0-9]+)$/,\n /^(ease-(linear|in|out|in-out))$/,\n /^(delay-[0-9]+)$/,\n /^(animate-(none|spin|ping|pulse|bounce))$/,\n // Interactive\n /^(cursor-(auto|default|pointer|wait|text|move|help|not-allowed|none|context-menu|progress|cell|crosshair|vertical-text|alias|copy|no-drop|grab|grabbing|all-scroll|col-resize|row-resize|n-resize|e-resize|s-resize|w-resize|ne-resize|nw-resize|se-resize|sw-resize|ew-resize|ns-resize|nesw-resize|nwse-resize|zoom-in|zoom-out))$/,\n /^(pointer-events-(none|auto))$/,\n /^(resize(-none|-y|-x)?)$/,\n /^(select-(none|text|all|auto))$/,\n /^(touch-(auto|none|pan-x|pan-left|pan-right|pan-y|pan-up|pan-down|pinch-zoom|manipulation))$/,\n /^(scroll-(auto|smooth))$/,\n /^(snap-(start|end|center|align-none|normal|always)|snap-(none|x|y|both|mandatory|proximity))$/,\n /^(appearance-none)$/,\n // Visibility\n /^(visible|invisible|collapse)$/,\n // Position\n /^(static|relative|absolute|fixed|sticky)$/,\n /^(top|right|bottom|left|inset|inset-x|inset-y)-([0-9]+(\\.[0-9]+)?|auto|full|px|1\\/2|1\\/3|2\\/3|1\\/4|2\\/4|3\\/4)$/,\n /^(-?(top|right|bottom|left|inset|inset-x|inset-y)-[0-9]+(\\.[0-9]+)?)$/,\n // Z-Index\n /^(z-(0|10|20|30|40|50|auto|[0-9]+))$/,\n // Overflow\n /^(overflow-(auto|hidden|clip|visible|scroll)|overflow-(x|y)-(auto|hidden|clip|visible|scroll))$/,\n /^(overscroll-(auto|contain|none)|overscroll-(x|y)-(auto|contain|none))$/,\n // Opacity\n /^(opacity-[0-9]+)$/,\n // Transform\n /^(scale-([0-9]+|x-[0-9]+|y-[0-9]+))$/,\n /^(rotate-[0-9]+|-rotate-[0-9]+)$/,\n /^(translate-(x|y)-[0-9]+(\\.[0-9]+)?|-translate-(x|y)-[0-9]+(\\.[0-9]+)?)$/,\n /^(skew-(x|y)-[0-9]+|-skew-(x|y)-[0-9]+)$/,\n /^(origin-(center|top|top-right|right|bottom-right|bottom|bottom-left|left|top-left))$/,\n /^(transform(-gpu|-none)?)$/,\n // Filters\n /^(blur(-none|-sm|-md|-lg|-xl|-2xl|-3xl)?)$/,\n /^(brightness-[0-9]+)$/,\n /^(contrast-[0-9]+)$/,\n /^(grayscale(-0)?)$/,\n /^(hue-rotate-[0-9]+|-hue-rotate-[0-9]+)$/,\n /^(invert(-0)?)$/,\n /^(saturate-[0-9]+)$/,\n /^(sepia(-0)?)$/,\n /^(backdrop-(blur|brightness|contrast|grayscale|hue-rotate|invert|opacity|saturate|sepia)(-[a-z0-9]+)?)$/,\n // Tables\n /^(border-(collapse|separate)|border-spacing-(x|y)?-[0-9]+|table-(auto|fixed))$/,\n /^(caption-(top|bottom))$/,\n // Lists\n /^(list-(inside|outside|none|disc|decimal))$/,\n /^(list-image-none)$/,\n // Columns\n /^(columns-(1|2|3|4|5|6|7|8|9|10|11|12|auto|3xs|2xs|xs|sm|md|lg|xl|2xl|3xl|4xl|5xl|6xl|7xl))$/,\n /^(break-(before|after|inside)-(auto|avoid|all|avoid-page|page|left|right|column))$/,\n // Object fit/position\n /^(object-(contain|cover|fill|none|scale-down))$/,\n /^(object-(bottom|center|left|left-bottom|left-top|right|right-bottom|right-top|top))$/,\n // Float/Clear\n /^(float-(right|left|none|start|end))$/,\n /^(clear-(right|left|both|none|start|end))$/,\n // Box\n /^(box-(border|content|decoration-clone|decoration-slice))$/,\n /^(aspect-(auto|square|video|[0-9]+\\/[0-9]+))$/,\n /^(isolation-(auto|isolate))$/,\n // Accessibility\n /^(sr-only|not-sr-only)$/,\n // SVG\n /^(fill-(none|inherit|current|transparent|white|black))$/,\n /^(stroke-(none|inherit|current|transparent|white|black|[0-9]+))$/,\n // Arbitrary values (catch-all for custom Tailwind)\n /^\\[.+\\]$/,\n // Arbitrary properties\n /^\\[--[a-zA-Z0-9-]+:.+\\]$/,\n // Responsive/State prefixes (catch modifiers)\n /^(sm|md|lg|xl|2xl|dark|hover|focus|active|disabled|visited|checked|first|last|odd|even|group-hover|peer-checked):.*$/,\n // Important modifier\n /^!.+$/,\n];\n/**\n * Sanitize a className string by removing Tailwind utility classes\n *\n * This function parses the className string, filters out any classes that match\n * known Tailwind patterns, and returns the remaining classes.\n *\n * @example\n * ```typescript\n * sanitizeClassName(\"button-component bg-blue-500 p-4 custom-class\")\n * // Returns: \"button-component custom-class\"\n * ```\n *\n * @param className - The className string to sanitize\n * @returns Sanitized className without Tailwind classes, or undefined if empty\n */\nexport function sanitizeClassName(className) {\n if (!className || typeof className !== 'string') {\n return undefined;\n }\n // Split className into individual classes\n const classes = className.split(/\\s+/).filter(Boolean);\n // Filter out Tailwind classes\n const sanitizedClasses = classes.filter((cls) => {\n // Keep if it doesn't match any Tailwind pattern\n const isTailwind = TAILWIND_PATTERNS.some((pattern) => pattern.test(cls));\n return !isTailwind;\n });\n // Return joined string or undefined if empty\n return sanitizedClasses.length > 0 ? sanitizedClasses.join(' ') : undefined;\n}\n/**\n * Check if a class is a Tailwind utility class\n *\n * @param cls - The class name to check\n * @returns true if it's a Tailwind class\n */\nexport function isTailwindClass(cls) {\n return TAILWIND_PATTERNS.some((pattern) => pattern.test(cls));\n}\n//# sourceMappingURL=sanitize-css.js.map","/**\n * Section Renderer Component\n *\n * Framework-agnostic SSR renderer for page sections\n * Works with Next.js, Remix, TanStack Start, and any React framework\n *\n * ⚠️ IMPORTANT: This renderer produces LIVE SITE HTML!\n * NO Tailwind classes allowed - only inline styles and semantic classes.\n */\n\nimport React from \"react\";\nimport type { SectionRendererProps } from \"./types\";\nimport { getPluginRenderer } from \"./utils/plugin-loader\";\nimport { defaultDesignSystem } from \"./utils/design-system\";\nimport { sanitizeClassName } from \"@codefluss/plugin-hooks/utils\";\n\n/**\n * Section Renderer\n *\n * Renders a page section with all its elements using SSR-capable plugin renderers\n * Uses ONLY inline styles and semantic classes - NO Tailwind.\n *\n * @example\n * ```tsx\n * import { SectionRenderer } from '@codefluss/section-renderer';\n *\n * export default function Page() {\n * return (\n * <SectionRenderer\n * section={sectionData}\n * language=\"de\"\n * designSystem={myDesignSystem}\n * />\n * );\n * }\n * ```\n */\nexport function SectionRenderer({\n\tsection,\n\tlanguage = \"de\",\n\tdesignSystem = defaultDesignSystem,\n\tclassName,\n}: SectionRendererProps): React.ReactElement {\n\tconst { utils } = designSystem;\n\n\t// Build section styles from layout config\n\tconst sectionStyles: React.CSSProperties = {\n\t\t// Background\n\t\t...(section.layout?.background && {\n\t\t\tbackground:\n\t\t\t\tsection.layout.background.type === \"color\"\n\t\t\t\t\t? section.layout.background.color\n\t\t\t\t\t: section.layout.background.type === \"gradient\"\n\t\t\t\t\t\t? generateGradient(section.layout.background.gradient!)\n\t\t\t\t\t\t: section.layout.background.type === \"image\"\n\t\t\t\t\t\t\t? `url(${section.layout.background.image?.url})`\n\t\t\t\t\t\t\t: \"transparent\",\n\t\t\t...(section.layout.background.type === \"image\" && {\n\t\t\t\tbackgroundSize:\n\t\t\t\t\tsection.layout.background.image?.size || \"cover\",\n\t\t\t\tbackgroundPosition:\n\t\t\t\t\tsection.layout.background.image?.position || \"center\",\n\t\t\t}),\n\t\t}),\n\n\t\t// Spacing\n\t\t...(section.layout?.spacing?.padding && {\n\t\t\tpaddingTop: `${section.layout.spacing.padding.top || 0}px`,\n\t\t\tpaddingRight: `${section.layout.spacing.padding.right || 0}px`,\n\t\t\tpaddingBottom: `${section.layout.spacing.padding.bottom || 0}px`,\n\t\t\tpaddingLeft: `${section.layout.spacing.padding.left || 0}px`,\n\t\t}),\n\t\t...(section.layout?.spacing?.margin && {\n\t\t\tmarginTop: `${section.layout.spacing.margin.top || 0}px`,\n\t\t\tmarginRight: `${section.layout.spacing.margin.right || 0}px`,\n\t\t\tmarginBottom: `${section.layout.spacing.margin.bottom || 0}px`,\n\t\t\tmarginLeft: `${section.layout.spacing.margin.left || 0}px`,\n\t\t}),\n\t};\n\n\t// Container class names - ONLY semantic classes, NO Tailwind\n\tconst containerClassName = utils.cn(\n\t\t\"section-renderer\",\n\t\t// Sanitize user-provided classes to remove Tailwind\n\t\tsanitizeClassName(className),\n\t);\n\n\t// Container styles - ALL visual styling via inline CSS\n\tconst containerStyles: React.CSSProperties = {\n\t\t...(section.layout?.width?.mode === \"boxed\" && {\n\t\t\tmaxWidth: section.layout.width.maxWidth || \"1200px\",\n\t\t\twidth: \"100%\",\n\t\t\t// Center alignment (was: mx-auto)\n\t\t\tmarginLeft: \"auto\",\n\t\t\tmarginRight: \"auto\",\n\t\t}),\n\t};\n\n\treturn (\n\t\t<section\n\t\t\tclassName={containerClassName}\n\t\t\tstyle={sectionStyles}\n\t\t\tdata-section-id={section.id}\n\t\t>\n\t\t\t<div style={containerStyles}>\n\t\t\t\t{section.elements.map((element) => {\n\t\t\t\t\t// Get plugin renderer\n\t\t\t\t\tconst PluginRenderer = getPluginRenderer(element.pluginId);\n\n\t\t\t\t\tif (!PluginRenderer) {\n\t\t\t\t\t\t// Render fallback for unknown plugins\n\t\t\t\t\t\treturn (\n\t\t\t\t\t\t\t<div\n\t\t\t\t\t\t\t\tkey={element.id}\n\t\t\t\t\t\t\t\tstyle={{\n\t\t\t\t\t\t\t\t\tpadding: \"16px\",\n\t\t\t\t\t\t\t\t\tborder: \"2px dashed #e5e7eb\",\n\t\t\t\t\t\t\t\t\tborderRadius: \"8px\",\n\t\t\t\t\t\t\t\t\tcolor: \"#6b7280\",\n\t\t\t\t\t\t\t\t\ttextAlign: \"center\",\n\t\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t<p>\n\t\t\t\t\t\t\t\t\tUnknown plugin: <code>{element.pluginId}</code>\n\t\t\t\t\t\t\t\t</p>\n\t\t\t\t\t\t\t\t<p style={{ fontSize: \"12px\", marginTop: \"8px\" }}>\n\t\t\t\t\t\t\t\t\tElement ID: {element.id}\n\t\t\t\t\t\t\t\t</p>\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t);\n\t\t\t\t\t}\n\n\t\t\t\t\t// Render children recursively if present\n\t\t\t\t\tconst children = element.children?.map((childElement) => {\n\t\t\t\t\t\tconst ChildPluginRenderer = getPluginRenderer(childElement.pluginId);\n\n\t\t\t\t\t\tif (!ChildPluginRenderer) {\n\t\t\t\t\t\t\treturn (\n\t\t\t\t\t\t\t\t<div\n\t\t\t\t\t\t\t\t\tkey={childElement.id}\n\t\t\t\t\t\t\t\t\tstyle={{\n\t\t\t\t\t\t\t\t\t\tpadding: \"8px\",\n\t\t\t\t\t\t\t\t\t\tborder: \"1px dashed #e5e7eb\",\n\t\t\t\t\t\t\t\t\t\tborderRadius: \"4px\",\n\t\t\t\t\t\t\t\t\t\tcolor: \"#9ca3af\",\n\t\t\t\t\t\t\t\t\t\tfontSize: \"14px\",\n\t\t\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\tUnknown plugin: <code>{childElement.pluginId}</code>\n\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t);\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\treturn (\n\t\t\t\t\t\t\t<ChildPluginRenderer\n\t\t\t\t\t\t\t\tkey={childElement.id}\n\t\t\t\t\t\t\t\telementId={childElement.id}\n\t\t\t\t\t\t\t\tdata={childElement.data}\n\t\t\t\t\t\t\t\tlanguage={language}\n\t\t\t\t\t\t\t\tdependencies={{\n\t\t\t\t\t\t\t\t\tdesignSystem,\n\t\t\t\t\t\t\t\t\tutils,\n\t\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t);\n\t\t\t\t\t});\n\n\t\t\t\t\t// Render plugin component with children\n\t\t\t\t\treturn (\n\t\t\t\t\t\t<PluginRenderer\n\t\t\t\t\t\t\tkey={element.id}\n\t\t\t\t\t\t\telementId={element.id}\n\t\t\t\t\t\t\tdata={element.data}\n\t\t\t\t\t\t\tlanguage={language}\n\t\t\t\t\t\t\tdependencies={{\n\t\t\t\t\t\t\t\tdesignSystem,\n\t\t\t\t\t\t\t\tutils,\n\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\t{...(children && { children })}\n\t\t\t\t\t\t/>\n\t\t\t\t\t);\n\t\t\t\t})}\n\t\t\t</div>\n\t\t</section>\n\t);\n}\n\n/**\n * Generate CSS gradient string from gradient config\n */\nfunction generateGradient(gradient: {\n\ttype: \"linear\" | \"radial\";\n\tangle?: number;\n\tstops: Array<{ color: string; position: number }>;\n}): string {\n\tconst colorStops = gradient.stops\n\t\t.map((stop) => `${stop.color} ${stop.position}%`)\n\t\t.join(\", \");\n\n\tif (gradient.type === \"linear\") {\n\t\treturn `linear-gradient(${gradient.angle || 90}deg, ${colorStops})`;\n\t}\n\n\treturn `radial-gradient(circle, ${colorStops})`;\n}\n\nSectionRenderer.displayName = \"SectionRenderer\";\n","/**\n * Storybook ArgTypes Generator\n *\n * Converts PropertyDefinition arrays into Storybook argTypes\n * This ensures consistency between Context Panel controls and Storybook controls\n *\n * @package @codefluss/section-renderer\n */\n\nimport type { PropertyDefinition } from '@codefluss/base-types';\nimport type { ArgTypes } from '@storybook/react';\n\n/**\n * Property Definition to Storybook control type mapping\n */\nconst controlTypeMap: Record<string, string> = {\n\ttext: 'text',\n\ttextarea: 'text',\n\tselect: 'select',\n\ttoggle: 'boolean',\n\t'number-input': 'number',\n\tinput: 'text',\n};\n\n/**\n * Category names mapping for better organization\n */\nconst categoryNameMap: Record<string, string> = {\n\tcontent: 'Content',\n\tlayout: 'Layout',\n\tstyle: 'Style',\n\tadvanced: 'Validation',\n};\n\n/**\n * Convert PropertyDefinition array to Storybook ArgTypes\n *\n * @param properties - Array of property definitions\n * @param dataPrefix - Prefix for property keys (default: 'data')\n * @returns Storybook ArgTypes object\n *\n * @example\n * ```ts\n * const argTypes = propertyDefinitionsToArgTypes(formInputProperties);\n * ```\n */\nexport function propertyDefinitionsToArgTypes(\n\tproperties: PropertyDefinition[],\n\tdataPrefix: string = 'data',\n): ArgTypes {\n\tconst argTypes: ArgTypes = {};\n\n\tfor (const prop of properties) {\n\t\t// Build the full property path\n\t\tconst propertyPath = `${dataPrefix}.${prop.key}`;\n\n\t\t// Determine control type\n\t\tconst controlType =\n\t\t\tprop.ui?.control && controlTypeMap[prop.ui.control]\n\t\t\t\t? controlTypeMap[prop.ui.control]\n\t\t\t\t: 'text';\n\n\t\t// Build argType configuration\n\t\tconst argType: any = {\n\t\t\tdescription: prop.description || prop.label,\n\t\t\ttable: {\n\t\t\t\tcategory: prop.category ? (categoryNameMap[prop.category] || prop.category) : undefined,\n\t\t\t\tdefaultValue: { summary: String(prop.default ?? '-') },\n\t\t\t},\n\t\t};\n\n\t\t// Add control configuration based on type\n\t\tif (prop.type === 'select' && prop.ui?.select?.options) {\n\t\t\targType.control = {\n\t\t\t\ttype: 'select',\n\t\t\t};\n\t\t\targType.options = prop.ui.select.options.map((opt) => opt.value);\n\t\t} else if (prop.type === 'toggle') {\n\t\t\targType.control = {\n\t\t\t\ttype: 'boolean',\n\t\t\t};\n\t\t} else if (prop.type === 'number' && prop.ui?.number) {\n\t\t\targType.control = {\n\t\t\t\ttype: 'number',\n\t\t\t\tmin: prop.ui.number.min,\n\t\t\t\tmax: prop.ui.number.max,\n\t\t\t\tstep: prop.ui.number.step,\n\t\t\t};\n\t\t} else {\n\t\t\targType.control = {\n\t\t\t\ttype: controlType,\n\t\t\t};\n\t\t}\n\n\t\t// Add the argType to the collection\n\t\targTypes[propertyPath] = argType;\n\t}\n\n\treturn argTypes;\n}\n\n/**\n * Create argTypes for common form field properties\n * that all form plugins share\n */\nexport const commonFormFieldArgTypes: ArgTypes = {\n\t'formContext.formId': {\n\t\tcontrol: 'text',\n\t\tdescription: 'Parent form ID',\n\t\ttable: {\n\t\t\tcategory: 'Context',\n\t\t\tdefaultValue: { summary: 'form' },\n\t\t},\n\t},\n\tdependencies: {\n\t\tdescription: 'Design system and utilities (auto-injected)',\n\t\ttable: {\n\t\t\tdisable: true,\n\t\t},\n\t},\n};\n","/**\n * Design System Resolver\n *\n * Universal utilities for resolving design system tokens to CSS styles.\n * Used by ALL plugins (text, paragraph, heading, form, container, etc).\n *\n * @package @codefluss/section-renderer\n * @version 0.0.3\n */\n\nimport type { PluginDesignSystem } from '@codefluss/base-types';\n\n/**\n * Create Design System from JSON export\n *\n * Converts the PostgreSQL export (design-system.json) into PluginDesignSystem interface\n */\nexport function createDesignSystemFromJson(jsonData: any): PluginDesignSystem {\n return {\n fonts: {\n getPreset: (presetId: string) => {\n // Find font style by font_id or html_element\n const fontStyle = jsonData.fontStyles?.find(\n (f: any) => f.font_id === presetId || f.html_element === presetId\n );\n\n if (!fontStyle) return undefined;\n\n return {\n family: fontStyle.font_family,\n size: fontStyle.font_size,\n weight: fontStyle.font_weight,\n lineHeight: '1.5', // Calculated or from data\n };\n },\n },\n colors: {\n getPreset: (presetId: string) => {\n // Find color by color_id\n const color = jsonData.colors?.find((c: any) => c.color_id === presetId);\n\n if (!color) return undefined;\n\n return {\n value: color.hex_value,\n label: color.name,\n };\n },\n },\n buttons: {\n getPreset: (presetId: string) => {\n // Find button preset by button_id\n const button = jsonData.buttons?.find((b: any) => b.button_id === presetId);\n\n if (!button) {\n // Fallback to default 'md' preset if exists\n const fallback = jsonData.buttons?.find((b: any) => b.button_id === 'md');\n if (!fallback) return undefined;\n\n // Map legacy format to ButtonStylePreset interface\n return {\n id: fallback.button_id,\n presetId: fallback.button_id,\n name: fallback.name,\n size: fallback.button_id,\n disabledOpacity: 0.5,\n defaultTransitionDuration: 200,\n hoverTransitionDuration: 200,\n activeTransitionDuration: 100,\n isDefault: fallback.button_id === 'md',\n // Legacy fields for backwards compatibility (casted as any)\n } as any;\n }\n\n // Map legacy format to ButtonStylePreset interface\n return {\n id: button.button_id,\n presetId: button.button_id,\n name: button.name,\n size: button.button_id,\n disabledOpacity: 0.5,\n defaultTransitionDuration: 200,\n hoverTransitionDuration: 200,\n activeTransitionDuration: 100,\n isDefault: button.button_id === 'md',\n } as any;\n },\n listPresets: () => {\n if (!jsonData.buttons) return [];\n\n return jsonData.buttons\n .sort((a: any, b: any) => (a.sort_order || 0) - (b.sort_order || 0))\n .map((b: any) => ({\n id: b.button_id,\n presetId: b.button_id,\n name: b.name,\n size: b.button_id,\n disabledOpacity: 0.5,\n defaultTransitionDuration: 200,\n hoverTransitionDuration: 200,\n activeTransitionDuration: 100,\n isDefault: b.button_id === 'md',\n } as any));\n },\n },\n spacing: {\n scale: [0, 4, 8, 12, 16, 20, 24, 32, 40, 48, 64, 80, 96, 128],\n scaleResponsive: new Map(),\n getPreset: (presetId: string) => {\n const preset = jsonData.spacingPresets?.find(\n (p: any) => p.preset_id === presetId\n );\n\n const defaultBox = { top: 16, right: 16, bottom: 16, left: 16 };\n\n if (!preset) {\n // Return default responsive spacing\n return {\n presetId: 'default',\n name: 'Default',\n margin: { mobile: defaultBox, tablet: defaultBox, desktop: defaultBox },\n padding: { mobile: defaultBox, tablet: defaultBox, desktop: defaultBox },\n };\n }\n\n // Build responsive margin values\n const marginMobile = { top: preset.margin_top_mobile ?? preset.margin_top ?? 16, right: preset.margin_right_mobile ?? preset.margin_right ?? 16, bottom: preset.margin_bottom_mobile ?? preset.margin_bottom ?? 16, left: preset.margin_left_mobile ?? preset.margin_left ?? 16 };\n const marginTablet = { top: preset.margin_top_tablet ?? preset.margin_top ?? 16, right: preset.margin_right_tablet ?? preset.margin_right ?? 16, bottom: preset.margin_bottom_tablet ?? preset.margin_bottom ?? 16, left: preset.margin_left_tablet ?? preset.margin_left ?? 16 };\n const marginDesktop = { top: preset.margin_top_desktop ?? preset.margin_top ?? 16, right: preset.margin_right_desktop ?? preset.margin_right ?? 16, bottom: preset.margin_bottom_desktop ?? preset.margin_bottom ?? 16, left: preset.margin_left_desktop ?? preset.margin_left ?? 16 };\n\n // Build responsive padding values\n const paddingMobile = { top: preset.padding_top_mobile ?? preset.padding_top ?? 16, right: preset.padding_right_mobile ?? preset.padding_right ?? 16, bottom: preset.padding_bottom_mobile ?? preset.padding_bottom ?? 16, left: preset.padding_left_mobile ?? preset.padding_left ?? 16 };\n const paddingTablet = { top: preset.padding_top_tablet ?? preset.padding_top ?? 16, right: preset.padding_right_tablet ?? preset.padding_right ?? 16, bottom: preset.padding_bottom_tablet ?? preset.padding_bottom ?? 16, left: preset.padding_left_tablet ?? preset.padding_left ?? 16 };\n const paddingDesktop = { top: preset.padding_top_desktop ?? preset.padding_top ?? 16, right: preset.padding_right_desktop ?? preset.padding_right ?? 16, bottom: preset.padding_bottom_desktop ?? preset.padding_bottom ?? 16, left: preset.padding_left_desktop ?? preset.padding_left ?? 16 };\n\n return {\n presetId: preset.preset_id || 'default',\n name: preset.name || 'Default',\n margin: { mobile: marginMobile, tablet: marginTablet, desktop: marginDesktop },\n padding: { mobile: paddingMobile, tablet: paddingTablet, desktop: paddingDesktop },\n };\n },\n },\n grid: {\n getPreset: (_presetId: string) => {\n // For now, return grid settings (could be extended with presets)\n return {\n columns: jsonData.gridSettings?.columns || 12,\n rows: jsonData.gridSettings?.rows || 6,\n columnGap: jsonData.gridSettings?.column_gap || 24,\n rowGap: jsonData.gridSettings?.row_gap || 24,\n maxWidth: jsonData.gridSettings?.max_width || 1200,\n margin: jsonData.gridSettings?.margin || 'auto',\n alignmentHorizontal: jsonData.gridSettings?.alignment_horizontal || 'start',\n alignmentVertical: jsonData.gridSettings?.alignment_vertical || 'start',\n alignmentContent: jsonData.gridSettings?.alignment_content || 'start',\n };\n },\n },\n layout: {\n getPreset: (_presetId: string) => {\n // Return layout configuration\n return {\n maxWidth: jsonData.gridSettings?.max_width ? `${jsonData.gridSettings.max_width}px` : '1200px',\n gap: `${jsonData.gridSettings?.column_gap || 24}px`,\n padding: '16px',\n margin: jsonData.gridSettings?.margin || 'auto',\n };\n },\n },\n breakpoints: {\n getConfig: () => ({\n mobile: { minWidth: 0, name: 'mobile' },\n tablet: { minWidth: jsonData.breakpoints?.tablet?.minWidth || 768, name: 'tablet' },\n desktop: { minWidth: jsonData.breakpoints?.desktop?.minWidth || 1024, name: 'desktop' },\n }),\n },\n };\n}\n\n/**\n * Resolve Typography Styles\n *\n * Get complete typography styles for an element\n */\nexport function resolveTypographyStyles(\n fontKey: string,\n designSystem: PluginDesignSystem\n): React.CSSProperties {\n const font = designSystem.fonts.getPreset(fontKey);\n\n return {\n fontFamily: font?.family,\n fontSize: font?.size,\n fontWeight: font?.weight,\n lineHeight: font?.lineHeight,\n };\n}\n\n/**\n * Resolve Color Value\n *\n * Get hex value for a color key\n */\nexport function resolveColorValue(\n colorKey: string,\n designSystem: PluginDesignSystem\n): string | undefined {\n return designSystem.colors.getPreset(colorKey)?.value;\n}\n\n/**\n * Resolve Spacing Styles\n *\n * Get spacing (padding/margin) as CSS properties\n */\nexport function resolveSpacingStyles(\n presetId: string,\n type: 'padding' | 'margin',\n designSystem: PluginDesignSystem,\n _context: string = 'default'\n): React.CSSProperties {\n const spacingPreset = designSystem.spacing.getPreset(presetId);\n\n // Use mobile values as base for non-responsive contexts\n const values = type === 'padding' ? spacingPreset?.padding?.mobile : spacingPreset?.margin?.mobile;\n\n if (!values) {\n return {};\n }\n\n const prefix = type === 'padding' ? 'padding' : 'margin';\n\n return {\n [`${prefix}Top`]: `${values.top}px`,\n [`${prefix}Right`]: `${values.right}px`,\n [`${prefix}Bottom`]: `${values.bottom}px`,\n [`${prefix}Left`]: `${values.left}px`,\n };\n}\n\n/**\n * Resolve Gap Styles\n *\n * Get gap values for flexbox/grid layouts\n * NOTE: Gap is now part of the spacing preset's margin values\n */\nexport function resolveGapStyles(\n presetId: string,\n designSystem: PluginDesignSystem,\n _context: string = 'default'\n): React.CSSProperties {\n const spacingPreset = designSystem.spacing.getPreset(presetId);\n\n // Use mobile margin values as gap fallback\n const margin = spacingPreset?.margin?.mobile;\n\n if (!margin) {\n return { rowGap: '16px', columnGap: '16px' };\n }\n\n return {\n rowGap: `${margin.top}px`,\n columnGap: `${margin.left}px`,\n };\n}\n\n/**\n * Resolve Box Model (Border, Border Radius, Shadow)\n */\nexport interface BoxModelStyles {\n border?: string;\n borderRadius?: string;\n boxShadow?: string;\n}\n\nexport function resolveBoxModelStyles(\n borderColor?: string,\n borderWidth: number = 1,\n borderRadius: number = 6,\n shadowId?: string,\n designSystem?: PluginDesignSystem\n): BoxModelStyles {\n const styles: BoxModelStyles = {};\n\n // Border\n if (borderColor && designSystem) {\n const color = resolveColorValue(borderColor, designSystem);\n if (color) {\n styles.border = `${borderWidth}px solid ${color}`;\n }\n }\n\n // Border Radius\n if (borderRadius) {\n styles.borderRadius = `${borderRadius}px`;\n }\n\n // Shadow (would need shadow resolver from design system)\n if (shadowId) {\n // TODO: Implement shadow resolution from design-system.json\n // const shadow = designSystem.shadows.get(shadowId);\n // styles.boxShadow = shadow?.css_value;\n }\n\n return styles;\n}\n\n/**\n * Resolve Container Grid Styles\n */\nexport function resolveContainerGridStyles(\n gridPresetId: string | undefined,\n designSystem: PluginDesignSystem,\n layoutMode: 'flexbox' | 'grid' = 'flexbox'\n): React.CSSProperties {\n if (layoutMode === 'flexbox') {\n return {\n display: 'flex',\n };\n }\n\n // Grid layout\n const gridConfig = designSystem.grid?.getPreset(gridPresetId || 'default');\n\n return {\n display: 'grid',\n gridTemplateColumns: `repeat(${gridConfig?.columns || 12}, 1fr)`,\n gridTemplateRows: `repeat(${gridConfig?.rows || 6}, minmax(0, 1fr))`,\n gap: `${gridConfig?.rowGap || 24}px ${gridConfig?.columnGap || 24}px`,\n maxWidth: gridConfig?.maxWidth ? `${gridConfig.maxWidth}px` : undefined,\n margin: gridConfig?.margin as string | undefined,\n };\n}\n\n/**\n * Resolve Form Field Styles\n *\n * Specialized resolver for form input fields\n */\nexport interface FormFieldStyles {\n container: React.CSSProperties;\n label: React.CSSProperties;\n input: React.CSSProperties;\n helpText: React.CSSProperties;\n error: React.CSSProperties;\n}\n\nexport function resolveFormFieldStyles(\n designSystem: PluginDesignSystem,\n options: {\n size?: 'sm' | 'md' | 'lg';\n disabled?: boolean;\n readOnly?: boolean;\n hasError?: boolean;\n } = {}\n): FormFieldStyles {\n const { size = 'md', disabled = false, readOnly = false, hasError = false } = options;\n\n // Resolve colors\n const backgroundColor = resolveColorValue('background', designSystem);\n const foregroundColor = resolveColorValue('foreground', designSystem);\n const borderColor = resolveColorValue('input', designSystem);\n const errorColor = resolveColorValue('destructive', designSystem);\n const mutedColor = resolveColorValue('muted-foreground', designSystem);\n\n // Resolve typography\n const labelFont = designSystem.fonts.getPreset('small');\n const inputFont = designSystem.fonts.getPreset('body');\n const helpFont = designSystem.fonts.getPreset('small');\n\n // Input sizes\n const inputHeight = size === 'sm' ? '32px' : size === 'lg' ? '48px' : '40px';\n const inputPadding = size === 'sm' ? '8px 12px' : size === 'lg' ? '12px 16px' : '8px 12px';\n\n return {\n container: {\n display: 'flex',\n flexDirection: 'column',\n gap: '8px',\n width: '100%',\n },\n label: {\n fontFamily: labelFont?.family,\n fontSize: labelFont?.size,\n fontWeight: '500',\n lineHeight: labelFont?.lineHeight,\n color: foregroundColor,\n marginBottom: '4px',\n },\n input: {\n display: 'flex',\n width: '100%',\n height: inputHeight,\n padding: inputPadding,\n fontFamily: inputFont?.family,\n fontSize: inputFont?.size,\n fontWeight: inputFont?.weight,\n lineHeight: inputFont?.lineHeight,\n color: foregroundColor,\n backgroundColor: readOnly ? mutedColor?.replace(/[^,]+(?=\\))/, '0.1') : backgroundColor,\n border: `1px solid ${hasError ? errorColor : borderColor}`,\n borderRadius: '6px',\n outline: 'none',\n opacity: disabled ? 0.5 : 1,\n cursor: disabled ? 'not-allowed' : readOnly ? 'default' : 'text',\n },\n helpText: {\n fontFamily: helpFont?.family,\n fontSize: helpFont?.size,\n color: mutedColor,\n marginTop: '4px',\n },\n error: {\n fontFamily: helpFont?.family,\n fontSize: helpFont?.size,\n color: errorColor,\n marginTop: '4px',\n },\n };\n}\n\n/**\n * Resolve Checkbox/Radio Styles\n *\n * Specialized resolver for checkbox and radio button fields\n */\nexport interface CheckboxRadioStyles {\n container: React.CSSProperties;\n label: React.CSSProperties;\n input: React.CSSProperties;\n optionLabel: React.CSSProperties;\n helpText: React.CSSProperties;\n groupContainer: React.CSSProperties;\n optionContainer: React.CSSProperties;\n}\n\nexport function resolveCheckboxRadioStyles(\n designSystem: PluginDesignSystem,\n options: {\n size?: 'sm' | 'md' | 'lg';\n disabled?: boolean;\n groupLayout?: 'vertical' | 'horizontal' | 'grid';\n gridColumns?: number;\n } = {}\n): CheckboxRadioStyles {\n const { size = 'md', disabled = false, groupLayout = 'vertical', gridColumns = 2 } = options;\n\n // Resolve colors\n const foregroundColor = resolveColorValue('foreground', designSystem);\n const borderColor = resolveColorValue('input', designSystem);\n const primaryColor = resolveColorValue('primary', designSystem);\n const mutedColor = resolveColorValue('muted-foreground', designSystem);\n\n // Resolve typography\n const labelFont = designSystem.fonts.getPreset('small');\n const bodyFont = designSystem.fonts.getPreset('body');\n\n // Input sizes (checkbox/radio input element size, not font size)\n const inputSize = size === 'sm' ? '16px' : size === 'lg' ? '24px' : '20px';\n\n // Layout styles\n const groupLayoutStyles: Record<string, React.CSSProperties> = {\n vertical: {\n display: 'flex',\n flexDirection: 'column',\n gap: '12px',\n },\n horizontal: {\n display: 'flex',\n flexDirection: 'row',\n flexWrap: 'wrap',\n gap: '16px',\n },\n grid: {\n display: 'grid',\n gridTemplateColumns: `repeat(${gridColumns}, 1fr)`,\n gap: '16px',\n },\n };\n\n return {\n container: {\n display: 'flex',\n flexDirection: 'column',\n gap: '8px',\n width: '100%',\n },\n label: {\n fontFamily: labelFont?.family,\n fontSize: labelFont?.size,\n fontWeight: '500',\n lineHeight: labelFont?.lineHeight,\n color: foregroundColor,\n },\n input: {\n width: inputSize,\n height: inputSize,\n borderRadius: '4px',\n border: `1px solid ${borderColor}`,\n color: primaryColor,\n cursor: disabled ? 'not-allowed' : 'pointer',\n opacity: disabled ? 0.5 : 1,\n transition: 'border-color 0.2s ease, box-shadow 0.2s ease',\n outline: 'none',\n accentColor: primaryColor,\n },\n optionLabel: {\n fontFamily: bodyFont?.family,\n fontSize: bodyFont?.size,\n fontWeight: bodyFont?.weight,\n lineHeight: bodyFont?.lineHeight,\n color: foregroundColor,\n cursor: disabled ? 'not-allowed' : 'pointer',\n userSelect: 'none',\n opacity: disabled ? 0.5 : 1,\n },\n helpText: {\n fontFamily: labelFont?.family,\n fontSize: labelFont?.size,\n color: mutedColor,\n marginTop: '4px',\n },\n groupContainer: groupLayoutStyles[groupLayout] || {\n display: 'flex',\n flexDirection: 'column',\n gap: '12px',\n },\n optionContainer: {\n display: 'flex',\n alignItems: 'flex-start',\n gap: '8px',\n },\n };\n}\n\n/**\n * Resolve Button Styles\n *\n * Specialized resolver for button elements\n */\nexport interface ButtonStyles {\n button: React.CSSProperties;\n}\n\nexport function resolveButtonStyles(\n designSystem: PluginDesignSystem,\n options: {\n variant?: 'primary' | 'secondary' | 'outline' | 'ghost';\n size?: 'sm' | 'md' | 'lg';\n fullWidth?: boolean;\n disabled?: boolean;\n } = {}\n): ButtonStyles {\n const { variant = 'primary', size = 'md', fullWidth = false, disabled = false } = options;\n\n // Resolve colors\n const primaryColor = resolveColorValue('primary', designSystem);\n const primaryForeground = resolveColorValue('primary-foreground', designSystem);\n const secondaryColor = resolveColorValue('secondary', designSystem);\n const secondaryForeground = resolveColorValue('secondary-foreground', designSystem);\n const foregroundColor = resolveColorValue('foreground', designSystem);\n const borderColor = resolveColorValue('border', designSystem);\n\n // Resolve typography\n const smallFont = designSystem.fonts.getPreset('small');\n const bodyFont = designSystem.fonts.getPreset('body');\n\n // Size styles - padding varies by size, but fontSize comes from design system\n const sizeStyles: Record<string, React.CSSProperties> = {\n sm: { padding: '6px 12px', fontSize: smallFont?.size },\n md: { padding: '8px 16px', fontSize: bodyFont?.size },\n lg: { padding: '12px 24px', fontSize: bodyFont?.size },\n };\n\n // Variant styles\n const variantStyles: Record<string, React.CSSProperties> = {\n primary: {\n backgroundColor: primaryColor,\n color: primaryForeground,\n border: 'none',\n },\n secondary: {\n backgroundColor: secondaryColor,\n color: secondaryForeground,\n border: 'none',\n },\n outline: {\n backgroundColor: 'transparent',\n color: foregroundColor,\n border: `1px solid ${borderColor}`,\n },\n ghost: {\n backgroundColor: 'transparent',\n color: foregroundColor,\n border: 'none',\n },\n };\n\n return {\n button: {\n display: 'inline-flex',\n alignItems: 'center',\n justifyContent: 'center',\n gap: '8px',\n fontFamily: bodyFont?.family,\n fontWeight: '500',\n borderRadius: '8px',\n cursor: disabled ? 'not-allowed' : 'pointer',\n opacity: disabled ? 0.5 : 1,\n transition: 'all 0.2s ease',\n outline: 'none',\n width: fullWidth ? '100%' : undefined,\n ...sizeStyles[size],\n ...variantStyles[variant],\n },\n };\n}\n"],"names":[],"mappings":"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","x_google_ignoreList":[1,2]}