@alikhalilll/a-skeleton 1.0.0 → 1.1.0

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.
@@ -1 +1 @@
1
- {"version":3,"file":"index.cjs","names":["DEFAULT_MAX_NODES","Comment","Text","Fragment","Comment","Text","Fragment"],"sources":["../../../../node_modules/.pnpm/clsx@2.1.1/node_modules/clsx/dist/clsx.mjs","../../../../node_modules/.pnpm/tailwind-merge@3.6.0/node_modules/tailwind-merge/dist/bundle-mjs.mjs","../../AUiBase/dist/index.js","../src/utils/walkDom.ts","../src/composables/useShapeProbe.ts","../src/composables/useSkeletonCache.ts","../src/utils/fingerprint.ts","../src/utils/buildStructuralSkeleton.ts","../src/components/StructuralSkeleton.ts","../src/components/ASkeleton.vue","../src/components/ASkeletonLayer.vue","../src/components/ASkeletonBlock.vue","../src/composables/useSkeleton.ts"],"sourcesContent":["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 postfixLookupClassGroupIds: createPostfixLookupClassGroupIds(config),\n ...createClassGroupUtils(config)\n});\nconst createPostfixLookupClassGroupIds = config => {\n const lookup = Object.create(null);\n const classGroupIds = config.postfixLookupClassGroups;\n if (classGroupIds) {\n for (let i = 0; i < classGroupIds.length; i++) {\n lookup[classGroupIds[i]] = true;\n }\n }\n return lookup;\n};\nconst SPLIT_CLASSES_REGEX = /\\s+/;\nconst mergeClassList = (classList, configUtils) => {\n const {\n parseClassName,\n getClassGroupId,\n getConflictingClassGroupIds,\n sortModifiers,\n postfixLookupClassGroupIds\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;\n if (hasPostfixModifier) {\n const baseClassNameWithoutPostfix = baseClassName.substring(0, maybePostfixModifierPosition);\n classGroupId = getClassGroupId(baseClassNameWithoutPostfix);\n const classGroupIdWithPostfix = classGroupId && postfixLookupClassGroupIds[classGroupId] ? getClassGroupId(baseClassName) : undefined;\n if (classGroupIdWithPostfix && classGroupIdWithPostfix !== classGroupId) {\n classGroupId = classGroupIdWithPostfix;\n hasPostfixModifier = false;\n }\n } else {\n classGroupId = getClassGroupId(baseClassName);\n }\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+)?\\/\\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 isNamedContainerQuery = value => value.startsWith('@container') && (value[10] === '/' && value[11] !== undefined || value[11] === 's' && value[16] !== undefined && value.startsWith('-size/', 10) || value[11] === 'n' && value[18] !== undefined && value.startsWith('-normal/', 10));\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 isArbitraryWeight = value => getIsArbitraryValue(value, isLabelWeight, isAny);\nconst isArbitraryFamilyName = value => getIsArbitraryValue(value, isLabelFamilyName, isNever);\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);\nconst isArbitraryVariableWeight = value => getIsArbitraryVariable(value, isLabelWeight, 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 isLabelWeight = label => label === 'number' || label === 'weight';\nconst isLabelShadow = label => label === 'shadow';\nconst validators = /*#__PURE__*/Object.defineProperty({\n __proto__: null,\n isAny,\n isAnyNonArbitrary,\n isArbitraryFamilyName,\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 isArbitraryVariableWeight,\n isArbitraryWeight,\n isFraction,\n isInteger,\n isNamedContainerQuery,\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 scaleSizingInline = () => [isFraction, 'screen', 'full', 'dvw', 'lvw', 'svw', 'min', 'max', 'fit', ...scaleUnambiguousSpacing()];\n const scaleSizingBlock = () => [isFraction, 'screen', 'full', 'lh', 'dvh', 'lvh', '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 * Container Type\n * @see https://tailwindcss.com/docs/responsive-design#container-queries\n */\n 'container-type': [{\n '@container': ['', 'normal', 'size', isArbitraryVariable, isArbitraryValue]\n }],\n /**\n * Container Name\n * @see https://tailwindcss.com/docs/responsive-design#named-containers\n */\n 'container-named': [isNamedContainerQuery],\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 * Inset\n * @see https://tailwindcss.com/docs/top-right-bottom-left\n */\n inset: [{\n inset: scaleInset()\n }],\n /**\n * Inset Inline\n * @see https://tailwindcss.com/docs/top-right-bottom-left\n */\n 'inset-x': [{\n 'inset-x': scaleInset()\n }],\n /**\n * Inset Block\n * @see https://tailwindcss.com/docs/top-right-bottom-left\n */\n 'inset-y': [{\n 'inset-y': scaleInset()\n }],\n /**\n * Inset Inline Start\n * @see https://tailwindcss.com/docs/top-right-bottom-left\n * @todo class group will be renamed to `inset-s` in next major release\n */\n start: [{\n 'inset-s': scaleInset(),\n /**\n * @deprecated since Tailwind CSS v4.2.0 in favor of `inset-s-*` utilities.\n * @see https://github.com/tailwindlabs/tailwindcss/pull/19613\n */\n start: scaleInset()\n }],\n /**\n * Inset Inline End\n * @see https://tailwindcss.com/docs/top-right-bottom-left\n * @todo class group will be renamed to `inset-e` in next major release\n */\n end: [{\n 'inset-e': scaleInset(),\n /**\n * @deprecated since Tailwind CSS v4.2.0 in favor of `inset-e-*` utilities.\n * @see https://github.com/tailwindlabs/tailwindcss/pull/19613\n */\n end: scaleInset()\n }],\n /**\n * Inset Block Start\n * @see https://tailwindcss.com/docs/top-right-bottom-left\n */\n 'inset-bs': [{\n 'inset-bs': scaleInset()\n }],\n /**\n * Inset Block End\n * @see https://tailwindcss.com/docs/top-right-bottom-left\n */\n 'inset-be': [{\n 'inset-be': 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 Inline\n * @see https://tailwindcss.com/docs/padding\n */\n px: [{\n px: scaleUnambiguousSpacing()\n }],\n /**\n * Padding Block\n * @see https://tailwindcss.com/docs/padding\n */\n py: [{\n py: scaleUnambiguousSpacing()\n }],\n /**\n * Padding Inline Start\n * @see https://tailwindcss.com/docs/padding\n */\n ps: [{\n ps: scaleUnambiguousSpacing()\n }],\n /**\n * Padding Inline End\n * @see https://tailwindcss.com/docs/padding\n */\n pe: [{\n pe: scaleUnambiguousSpacing()\n }],\n /**\n * Padding Block Start\n * @see https://tailwindcss.com/docs/padding\n */\n pbs: [{\n pbs: scaleUnambiguousSpacing()\n }],\n /**\n * Padding Block End\n * @see https://tailwindcss.com/docs/padding\n */\n pbe: [{\n pbe: 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 Inline\n * @see https://tailwindcss.com/docs/margin\n */\n mx: [{\n mx: scaleMargin()\n }],\n /**\n * Margin Block\n * @see https://tailwindcss.com/docs/margin\n */\n my: [{\n my: scaleMargin()\n }],\n /**\n * Margin Inline Start\n * @see https://tailwindcss.com/docs/margin\n */\n ms: [{\n ms: scaleMargin()\n }],\n /**\n * Margin Inline End\n * @see https://tailwindcss.com/docs/margin\n */\n me: [{\n me: scaleMargin()\n }],\n /**\n * Margin Block Start\n * @see https://tailwindcss.com/docs/margin\n */\n mbs: [{\n mbs: scaleMargin()\n }],\n /**\n * Margin Block End\n * @see https://tailwindcss.com/docs/margin\n */\n mbe: [{\n mbe: 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 * Inline Size\n * @see https://tailwindcss.com/docs/width\n */\n 'inline-size': [{\n inline: ['auto', ...scaleSizingInline()]\n }],\n /**\n * Min-Inline Size\n * @see https://tailwindcss.com/docs/min-width\n */\n 'min-inline-size': [{\n 'min-inline': ['auto', ...scaleSizingInline()]\n }],\n /**\n * Max-Inline Size\n * @see https://tailwindcss.com/docs/max-width\n */\n 'max-inline-size': [{\n 'max-inline': ['none', ...scaleSizingInline()]\n }],\n /**\n * Block Size\n * @see https://tailwindcss.com/docs/height\n */\n 'block-size': [{\n block: ['auto', ...scaleSizingBlock()]\n }],\n /**\n * Min-Block Size\n * @see https://tailwindcss.com/docs/min-height\n */\n 'min-block-size': [{\n 'min-block': ['auto', ...scaleSizingBlock()]\n }],\n /**\n * Max-Block Size\n * @see https://tailwindcss.com/docs/max-height\n */\n 'max-block-size': [{\n 'max-block': ['none', ...scaleSizingBlock()]\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, isArbitraryVariableWeight, isArbitraryWeight]\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, isArbitraryFamilyName, themeFont]\n }],\n /**\n * Font Feature Settings\n * @see https://tailwindcss.com/docs/font-feature-settings\n */\n 'font-features': [{\n 'font-features': [isArbitraryValue]\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 * Tab Size\n * @see https://tailwindcss.com/docs/tab-size\n */\n 'tab-size': [{\n tab: [isInteger, isArbitraryVariable, isArbitraryValue]\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 Inline\n * @see https://tailwindcss.com/docs/border-width\n */\n 'border-w-x': [{\n 'border-x': scaleBorderWidth()\n }],\n /**\n * Border Width Block\n * @see https://tailwindcss.com/docs/border-width\n */\n 'border-w-y': [{\n 'border-y': scaleBorderWidth()\n }],\n /**\n * Border Width Inline Start\n * @see https://tailwindcss.com/docs/border-width\n */\n 'border-w-s': [{\n 'border-s': scaleBorderWidth()\n }],\n /**\n * Border Width Inline End\n * @see https://tailwindcss.com/docs/border-width\n */\n 'border-w-e': [{\n 'border-e': scaleBorderWidth()\n }],\n /**\n * Border Width Block Start\n * @see https://tailwindcss.com/docs/border-width\n */\n 'border-w-bs': [{\n 'border-bs': scaleBorderWidth()\n }],\n /**\n * Border Width Block End\n * @see https://tailwindcss.com/docs/border-width\n */\n 'border-w-be': [{\n 'border-be': 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 Inline\n * @see https://tailwindcss.com/docs/border-color\n */\n 'border-color-x': [{\n 'border-x': scaleColor()\n }],\n /**\n * Border Color Block\n * @see https://tailwindcss.com/docs/border-color\n */\n 'border-color-y': [{\n 'border-y': scaleColor()\n }],\n /**\n * Border Color Inline Start\n * @see https://tailwindcss.com/docs/border-color\n */\n 'border-color-s': [{\n 'border-s': scaleColor()\n }],\n /**\n * Border Color Inline End\n * @see https://tailwindcss.com/docs/border-color\n */\n 'border-color-e': [{\n 'border-e': scaleColor()\n }],\n /**\n * Border Color Block Start\n * @see https://tailwindcss.com/docs/border-color\n */\n 'border-color-bs': [{\n 'border-bs': scaleColor()\n }],\n /**\n * Border Color Block End\n * @see https://tailwindcss.com/docs/border-color\n */\n 'border-color-be': [{\n 'border-be': 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 * Zoom\n * @see https://tailwindcss.com/docs/zoom\n */\n zoom: [{\n zoom: [isInteger, isArbitraryVariable, isArbitraryValue]\n }],\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 * Scrollbar Thumb Color\n * @see https://tailwindcss.com/docs/scrollbar-color\n */\n 'scrollbar-thumb-color': [{\n 'scrollbar-thumb': scaleColor()\n }],\n /**\n * Scrollbar Track Color\n * @see https://tailwindcss.com/docs/scrollbar-color\n */\n 'scrollbar-track-color': [{\n 'scrollbar-track': scaleColor()\n }],\n /**\n * Scrollbar Gutter\n * @see https://tailwindcss.com/docs/scrollbar-gutter\n */\n 'scrollbar-gutter': [{\n 'scrollbar-gutter': ['auto', 'stable', 'both']\n }],\n /**\n * Scrollbar Width\n * @see https://tailwindcss.com/docs/scrollbar-width\n */\n 'scrollbar-w': [{\n scrollbar: ['auto', 'thin', 'none']\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 Inline\n * @see https://tailwindcss.com/docs/scroll-margin\n */\n 'scroll-mx': [{\n 'scroll-mx': scaleUnambiguousSpacing()\n }],\n /**\n * Scroll Margin Block\n * @see https://tailwindcss.com/docs/scroll-margin\n */\n 'scroll-my': [{\n 'scroll-my': scaleUnambiguousSpacing()\n }],\n /**\n * Scroll Margin Inline Start\n * @see https://tailwindcss.com/docs/scroll-margin\n */\n 'scroll-ms': [{\n 'scroll-ms': scaleUnambiguousSpacing()\n }],\n /**\n * Scroll Margin Inline End\n * @see https://tailwindcss.com/docs/scroll-margin\n */\n 'scroll-me': [{\n 'scroll-me': scaleUnambiguousSpacing()\n }],\n /**\n * Scroll Margin Block Start\n * @see https://tailwindcss.com/docs/scroll-margin\n */\n 'scroll-mbs': [{\n 'scroll-mbs': scaleUnambiguousSpacing()\n }],\n /**\n * Scroll Margin Block End\n * @see https://tailwindcss.com/docs/scroll-margin\n */\n 'scroll-mbe': [{\n 'scroll-mbe': 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 Inline\n * @see https://tailwindcss.com/docs/scroll-padding\n */\n 'scroll-px': [{\n 'scroll-px': scaleUnambiguousSpacing()\n }],\n /**\n * Scroll Padding Block\n * @see https://tailwindcss.com/docs/scroll-padding\n */\n 'scroll-py': [{\n 'scroll-py': scaleUnambiguousSpacing()\n }],\n /**\n * Scroll Padding Inline Start\n * @see https://tailwindcss.com/docs/scroll-padding\n */\n 'scroll-ps': [{\n 'scroll-ps': scaleUnambiguousSpacing()\n }],\n /**\n * Scroll Padding Inline End\n * @see https://tailwindcss.com/docs/scroll-padding\n */\n 'scroll-pe': [{\n 'scroll-pe': scaleUnambiguousSpacing()\n }],\n /**\n * Scroll Padding Block Start\n * @see https://tailwindcss.com/docs/scroll-padding\n */\n 'scroll-pbs': [{\n 'scroll-pbs': scaleUnambiguousSpacing()\n }],\n /**\n * Scroll Padding Block End\n * @see https://tailwindcss.com/docs/scroll-padding\n */\n 'scroll-pbe': [{\n 'scroll-pbe': 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 'container-named': ['container-type'],\n overflow: ['overflow-x', 'overflow-y'],\n overscroll: ['overscroll-x', 'overscroll-y'],\n inset: ['inset-x', 'inset-y', 'inset-bs', 'inset-be', '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', 'pbs', 'pbe', 'pt', 'pr', 'pb', 'pl'],\n px: ['pr', 'pl'],\n py: ['pt', 'pb'],\n m: ['mx', 'my', 'ms', 'me', 'mbs', 'mbe', '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-bs', 'border-w-be', '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-bs', 'border-color-be', '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-mbs', 'scroll-mbe', '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-pbs', 'scroll-pbe', '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 postfixLookupClassGroups: ['container-type'],\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, 'postfixLookupClassGroups', override.postfixLookupClassGroups);\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, 'postfixLookupClassGroups');\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","import { clsx } from \"clsx\";\nimport { twMerge } from \"tailwind-merge\";\n//#region src/cn.ts\nfunction cn(...inputs) {\n\treturn twMerge(clsx(inputs));\n}\n//#endregion\n//#region src/sizes.ts\nconst SIZES = [\n\t\"xs\",\n\t\"sm\",\n\t\"md\",\n\t\"lg\",\n\t\"xl\"\n];\nconst DEFAULT_SIZE = \"md\";\n/** Tailwind height utility per size. md uses an arbitrary value because 43px isn't on the spacing scale. */\nconst controlHeight = {\n\txs: \"h-7\",\n\tsm: \"h-9\",\n\tmd: \"h-[43px]\",\n\tlg: \"h-[52px]\",\n\txl: \"h-[60px]\"\n};\nconst controlPaddingX = {\n\txs: \"px-2\",\n\tsm: \"px-2.5\",\n\tmd: \"px-3\",\n\tlg: \"px-3.5\",\n\txl: \"px-4\"\n};\nconst controlTextSize = {\n\txs: \"text-xs\",\n\tsm: \"text-sm\",\n\tmd: \"text-sm\",\n\tlg: \"text-base\",\n\txl: \"text-base\"\n};\n/** Pixel values exposed so non-template code (icons, ResizeObserver, etc.) can read the height. */\nconst controlHeightPx = {\n\txs: 28,\n\tsm: 36,\n\tmd: 43,\n\tlg: 52,\n\txl: 60\n};\n//#endregion\nexport { DEFAULT_SIZE, SIZES, cn, controlHeight, controlHeightPx, controlPaddingX, controlTextSize };\n\n//# sourceMappingURL=index.js.map","import type { CSSProperties } from 'vue';\nimport type { CachedShape, ShapeNode, ShapeNodeType } from '../types';\n\nexport interface WalkOptions {\n maxDepth: number;\n /** Hard cap on captured nodes. Default 500. */\n maxNodes?: number;\n /** Min CSS-pixel size (either axis) for an element to be emitted. Default 4. */\n minSize?: number;\n}\n\nconst DEFAULT_MAX_NODES = 500;\nconst DEFAULT_MIN_SIZE = 4;\n\n/* Atomic elements — never recursed into; rendered as a single block. */\nconst LEAF_TAGS = new Set([\n 'IMG',\n 'SVG',\n 'CANVAS',\n 'VIDEO',\n 'INPUT',\n 'TEXTAREA',\n 'SELECT',\n 'BUTTON',\n 'PROGRESS',\n 'METER',\n 'HR',\n]);\n\n/**\n * Walk `root`'s descendants and produce a list of shimmer blocks that mirror its\n * rendered layout. Coordinates are relative to `root`'s top-left so the result can\n * be replayed in any container of the same size.\n *\n * Performance:\n * - `maxNodes` caps the walk so a 5000-row table doesn't lock up the main thread.\n * - `minSize` filters out hairlines (1-2 px paddings, decorative dots) that\n * inflate node count without adding visual signal.\n * - All `getBoundingClientRect` / `getComputedStyle` reads happen in a single\n * top-down pass with no intervening writes, so the browser does one layout\n * up front and serves cached values from then on (no layout thrashing).\n * - Each emitted `ShapeNode` has a frozen pre-computed `style` (and `lineStyles`\n * for multi-line text) so the render path is allocation-free.\n */\nexport function walkDom(root: HTMLElement, options: WalkOptions): CachedShape {\n const maxNodes = options.maxNodes ?? DEFAULT_MAX_NODES;\n const minSize = options.minSize ?? DEFAULT_MIN_SIZE;\n\n const nodes: ShapeNode[] = [];\n const rootRect = root.getBoundingClientRect();\n let truncated = false;\n\n function visit(el: Element, depth: number): void {\n if (nodes.length >= maxNodes) {\n truncated = true;\n return;\n }\n\n const html = el as HTMLElement;\n if (html.dataset?.skeletonIgnore !== undefined) return;\n\n const cs = window.getComputedStyle(el);\n if (cs.display === 'none' || cs.visibility === 'hidden' || cs.opacity === '0') return;\n\n const rect = el.getBoundingClientRect();\n if (rect.width < minSize || rect.height < minSize) return;\n\n const tag = el.tagName.toUpperCase();\n const isLeafTag = LEAF_TAGS.has(tag);\n const hasStop = html.dataset?.skeletonStop !== undefined;\n const childElements: Element[] = [];\n for (let i = 0; i < el.children.length; i++) {\n const c = el.children[i];\n if ((c as HTMLElement).dataset?.skeletonIgnore === undefined) childElements.push(c);\n }\n const hasOwnText = hasDirectTextContent(el);\n const reachedDepth = depth >= options.maxDepth;\n const isLeaf = isLeafTag || hasStop || reachedDepth || childElements.length === 0;\n\n if (isLeaf) {\n const node = elementToShape(tag, cs, rect, rootRect, hasOwnText);\n if (node) nodes.push(node);\n return;\n }\n\n for (let i = 0; i < childElements.length; i++) {\n if (nodes.length >= maxNodes) {\n truncated = true;\n return;\n }\n visit(childElements[i], depth + 1);\n }\n }\n\n for (let i = 0; i < root.children.length; i++) {\n if (nodes.length >= maxNodes) {\n truncated = true;\n break;\n }\n visit(root.children[i], 1);\n }\n\n return Object.freeze({\n nodes: Object.freeze(nodes),\n width: Math.round(rootRect.width),\n height: Math.round(rootRect.height),\n truncated,\n }) as CachedShape;\n}\n\nfunction hasDirectTextContent(el: Element): boolean {\n for (let i = 0; i < el.childNodes.length; i++) {\n const node = el.childNodes[i];\n if (node.nodeType === Node.TEXT_NODE && (node.textContent ?? '').trim().length > 0) {\n return true;\n }\n }\n return false;\n}\n\nfunction elementToShape(\n tag: string,\n cs: CSSStyleDeclaration,\n rect: DOMRect,\n origin: DOMRect,\n hasText: boolean\n): ShapeNode | null {\n const x = Math.round(rect.left - origin.left);\n const y = Math.round(rect.top - origin.top);\n const w = Math.round(rect.width);\n const h = Math.round(rect.height);\n\n const radius = parseFloat(cs.borderRadius) || 0;\n const minDim = Math.min(w, h);\n const isCircle = radius >= minDim / 2 - 1 && Math.abs(w - h) <= 2 && minDim > 0;\n\n let type: ShapeNodeType;\n let resolvedRadius = radius;\n let lines: number | undefined;\n let lineHeight: number | undefined;\n\n if (tag === 'IMG' || tag === 'SVG' || tag === 'VIDEO' || tag === 'CANVAS') {\n type = 'image';\n } else if (isCircle) {\n type = 'circle';\n resolvedRadius = Math.floor(minDim / 2);\n } else if (hasText) {\n type = 'text';\n lineHeight = Math.round(parseFloat(cs.lineHeight) || parseFloat(cs.fontSize) * 1.4 || 16);\n lines = Math.max(1, Math.round(h / lineHeight));\n resolvedRadius = Math.min(radius, 4);\n } else {\n type = 'block';\n }\n\n return freezeShape({\n type,\n x,\n y,\n w,\n h,\n radius: resolvedRadius,\n lines,\n lineHeight,\n });\n}\n\n/**\n * Pre-compute (and freeze) the inline styles used at render time. Doing it once\n * here means rendering 500 blocks doesn't allocate 500 style objects per frame.\n */\nfunction freezeShape(node: {\n type: ShapeNodeType;\n x: number;\n y: number;\n w: number;\n h: number;\n radius: number;\n lines?: number;\n lineHeight?: number;\n}): ShapeNode {\n const style: CSSProperties = Object.freeze({\n left: `${node.x}px`,\n top: `${node.y}px`,\n width: `${node.w}px`,\n height: `${node.h}px`,\n borderRadius: `${node.radius}px`,\n });\n\n let lineStyles: ReadonlyArray<Readonly<CSSProperties>> | undefined;\n if (node.type === 'text' && node.lines && node.lines > 1) {\n const lh = node.lineHeight ?? Math.round(node.h / node.lines);\n const barHeight = Math.max(8, Math.round(lh * 0.7));\n const widthFull = `${node.w}px`;\n const widthLast = `${Math.max(40, Math.round(node.w * 0.7))}px`;\n const heightStr = `${barHeight}px`;\n const radiusStr = `${node.radius}px`;\n const arr: Readonly<CSSProperties>[] = [];\n for (let i = 1; i <= node.lines; i++) {\n const isLast = i === node.lines;\n arr.push(\n Object.freeze<CSSProperties>({\n left: `${node.x}px`,\n top: `${node.y + (i - 1) * lh}px`,\n width: isLast ? widthLast : widthFull,\n height: heightStr,\n borderRadius: radiusStr,\n })\n );\n }\n lineStyles = Object.freeze(arr);\n }\n\n return Object.freeze({\n type: node.type,\n x: node.x,\n y: node.y,\n w: node.w,\n h: node.h,\n radius: node.radius,\n lines: node.lines,\n lineHeight: node.lineHeight,\n style,\n lineStyles,\n });\n}\n","import { onBeforeUnmount, watch } from 'vue';\nimport type { CachedShape } from '../types';\nimport { walkDom } from '../utils/walkDom';\n\nexport interface ShapeProbeOptions {\n maxDepth: number;\n /** Forwarded to `walkDom`. Default 500. */\n maxNodes?: number;\n /** Forwarded to `walkDom`. Default 4. */\n minSize?: number;\n /**\n * Debounce window for `ResizeObserver`-triggered re-captures, in ms.\n * Default 150. Prevents a re-walk every animation frame while the user is\n * actively dragging the viewport edge. The first capture (initial mount) is\n * always immediate via `requestAnimationFrame`.\n */\n resizeDebounceMs?: number;\n onCapture: (shape: CachedShape) => void;\n}\n\nconst DEFAULT_RESIZE_DEBOUNCE_MS = 150;\n\n/**\n * Observe `getTarget()` and capture its rendered shape whenever the element\n * appears or resizes.\n *\n * Performance:\n * - Initial capture runs via `requestAnimationFrame` so it sneaks into the\n * first idle window after mount — no synchronous layout from inside the\n * render queue.\n * - Subsequent `ResizeObserver` callbacks are debounced (default 150 ms) so a\n * drag-resize doesn't trigger a fresh DOM walk per frame.\n * - `walkDom` itself enforces `maxNodes` so even a worst-case capture (10k\n * descendants) returns in bounded time.\n */\nexport function useShapeProbe(getTarget: () => HTMLElement | null, options: ShapeProbeOptions) {\n let observer: ResizeObserver | undefined;\n let frame: number | undefined;\n let timer: ReturnType<typeof setTimeout> | undefined;\n let hasCaptured = false;\n\n const debounceMs = options.resizeDebounceMs ?? DEFAULT_RESIZE_DEBOUNCE_MS;\n\n function cleanup() {\n if (observer) {\n observer.disconnect();\n observer = undefined;\n }\n if (frame !== undefined) {\n cancelAnimationFrame(frame);\n frame = undefined;\n }\n if (timer !== undefined) {\n clearTimeout(timer);\n timer = undefined;\n }\n }\n\n function capture(el: HTMLElement) {\n const result = walkDom(el, {\n maxDepth: options.maxDepth,\n maxNodes: options.maxNodes,\n minSize: options.minSize,\n });\n if (result.width > 0 && result.height > 0 && result.nodes.length > 0) {\n hasCaptured = true;\n options.onCapture(result);\n }\n }\n\n function scheduleImmediate(el: HTMLElement) {\n if (frame !== undefined) cancelAnimationFrame(frame);\n frame = requestAnimationFrame(() => {\n frame = undefined;\n capture(el);\n });\n }\n\n function scheduleDebounced(el: HTMLElement) {\n if (timer !== undefined) clearTimeout(timer);\n timer = setTimeout(() => {\n timer = undefined;\n capture(el);\n }, debounceMs);\n }\n\n watch(\n getTarget,\n (el) => {\n cleanup();\n hasCaptured = false;\n if (!el || typeof window === 'undefined') return;\n scheduleImmediate(el);\n if (typeof ResizeObserver !== 'undefined') {\n observer = new ResizeObserver(() => {\n /* ResizeObserver fires once on observe() — let the rAF capture above\n * handle the initial measurement, then debounce everything that\n * follows so a drag-resize doesn't trigger a re-walk per frame. */\n if (hasCaptured) scheduleDebounced(el);\n });\n observer.observe(el);\n }\n },\n { immediate: true, flush: 'post' }\n );\n\n onBeforeUnmount(cleanup);\n}\n","import type { CSSProperties } from 'vue';\nimport type { CachedShape, ShapeNode } from '../types';\n\nconst memory = new Map<string, CachedShape>();\nconst STORAGE_PREFIX = 'a-skeleton:';\n\n/**\n * Lookup a captured shape by key. Reads in-memory first, then `localStorage` if\n * `persist` is enabled. SSR-safe — bypasses `window` access on the server.\n * Rehydrates pre-computed styles for shapes deserialized from older sessions\n * (Object.freeze + style/lineStyles don't survive `JSON.stringify` round-trip).\n */\nexport function getCached(key: string, persist: boolean): CachedShape | undefined {\n const hit = memory.get(key);\n if (hit) return hit;\n if (!persist || typeof window === 'undefined') return undefined;\n try {\n const raw = window.localStorage.getItem(STORAGE_PREFIX + key);\n if (!raw) return undefined;\n const parsed = JSON.parse(raw) as CachedShape;\n const rehydrated = rehydrateShape(parsed);\n memory.set(key, rehydrated);\n return rehydrated;\n } catch {\n return undefined;\n }\n}\n\n/** Store a captured shape. `persist=true` mirrors to `localStorage`. */\nexport function setCached(key: string, value: CachedShape, persist: boolean): void {\n memory.set(key, value);\n if (!persist || typeof window === 'undefined') return;\n try {\n /* Only the geometry survives the round-trip; styles get rebuilt on read. */\n const lean = { width: value.width, height: value.height, nodes: leanNodes(value.nodes) };\n window.localStorage.setItem(STORAGE_PREFIX + key, JSON.stringify(lean));\n } catch {\n /* quota exceeded / disabled storage — silently degrade to in-memory only. */\n }\n}\n\n/** Drop a single entry (or all entries when no key). Exposed for tests + manual invalidation. */\nexport function clearCached(key?: string): void {\n if (!key) {\n memory.clear();\n if (typeof window === 'undefined') return;\n try {\n for (const k of Object.keys(window.localStorage)) {\n if (k.startsWith(STORAGE_PREFIX)) window.localStorage.removeItem(k);\n }\n } catch {\n /* ignore */\n }\n return;\n }\n memory.delete(key);\n if (typeof window === 'undefined') return;\n try {\n window.localStorage.removeItem(STORAGE_PREFIX + key);\n } catch {\n /* ignore */\n }\n}\n\n/**\n * Rebuild `style` + `lineStyles` for nodes that lost them via serialization.\n * Walks the array in-place where possible and freezes the result so the render\n * path stays allocation-free.\n */\nfunction rehydrateShape(shape: CachedShape): CachedShape {\n const nodes = shape.nodes.map((n) => (n.style ? n : freezeNodeStyles(n)));\n return Object.freeze({\n nodes: Object.freeze(nodes),\n width: shape.width,\n height: shape.height,\n truncated: shape.truncated,\n }) as CachedShape;\n}\n\nfunction leanNodes(nodes: ReadonlyArray<ShapeNode>): Partial<ShapeNode>[] {\n /* Strip the (re-derivable) style fields before persisting so the localStorage\n * payload stays small — a 500-node shape would otherwise serialize ~500 frozen\n * style objects redundantly. */\n return nodes.map((n) => ({\n type: n.type,\n x: n.x,\n y: n.y,\n w: n.w,\n h: n.h,\n radius: n.radius,\n lines: n.lines,\n lineHeight: n.lineHeight,\n }));\n}\n\nfunction freezeNodeStyles(node: ShapeNode): ShapeNode {\n const style: CSSProperties = Object.freeze({\n left: `${node.x}px`,\n top: `${node.y}px`,\n width: `${node.w}px`,\n height: `${node.h}px`,\n borderRadius: `${node.radius}px`,\n });\n\n let lineStyles: ReadonlyArray<Readonly<CSSProperties>> | undefined;\n if (node.type === 'text' && node.lines && node.lines > 1) {\n const lh = node.lineHeight ?? Math.round(node.h / node.lines);\n const barHeight = Math.max(8, Math.round(lh * 0.7));\n const widthFull = `${node.w}px`;\n const widthLast = `${Math.max(40, Math.round(node.w * 0.7))}px`;\n const heightStr = `${barHeight}px`;\n const radiusStr = `${node.radius}px`;\n const arr: Readonly<CSSProperties>[] = [];\n for (let i = 1; i <= node.lines; i++) {\n const isLast = i === node.lines;\n arr.push(\n Object.freeze<CSSProperties>({\n left: `${node.x}px`,\n top: `${node.y + (i - 1) * lh}px`,\n width: isLast ? widthLast : widthFull,\n height: heightStr,\n borderRadius: radiusStr,\n })\n );\n }\n lineStyles = Object.freeze(arr);\n }\n\n return Object.freeze({\n type: node.type,\n x: node.x,\n y: node.y,\n w: node.w,\n h: node.h,\n radius: node.radius,\n lines: node.lines,\n lineHeight: node.lineHeight,\n style,\n lineStyles,\n });\n}\n","import { Comment, Fragment, Text, type VNode } from 'vue';\n\n/**\n * Derive a default cache key from a slot's vnode tree. Returns the first\n * non-comment child's component name (or HTML tag). When the slot only contains\n * text / comments / unknown content, returns `'anonymous'` so the caller can\n * still cache, but with no useful identity — encourage an explicit `cacheKey`.\n */\nexport function fingerprintSlot(vnodes: VNode[] | undefined): string {\n if (!vnodes) return 'anonymous';\n for (const vnode of vnodes) {\n const tag = describeVNode(vnode);\n if (tag) return tag;\n }\n return 'anonymous';\n}\n\nfunction describeVNode(vnode: VNode): string | undefined {\n const t = vnode.type;\n if (t === Comment || t === Text) return undefined;\n if (t === Fragment) {\n const children = vnode.children;\n if (Array.isArray(children)) {\n for (const child of children) {\n if (child && typeof child === 'object' && 'type' in (child as object)) {\n const found = describeVNode(child as VNode);\n if (found) return found;\n }\n }\n }\n return undefined;\n }\n if (typeof t === 'string') return t;\n if (typeof t === 'object' && t !== null) {\n const named =\n (t as { name?: string }).name ??\n (t as { __name?: string }).__name ??\n (t as { displayName?: string }).displayName;\n if (named) return named;\n }\n return undefined;\n}\n","import {\n Comment,\n Fragment,\n Text,\n h,\n type VNode,\n type VNodeArrayChildren,\n type VNodeChild,\n} from 'vue';\n\n/**\n * Atomic HTML tags — rendered as a single skeleton block. Their own class/style\n * is preserved so Tailwind utilities (`size-16`, `rounded-full`, …) carry the\n * dimensions across without us needing to measure.\n */\nconst ATOMIC_TAGS = new Set([\n 'img',\n 'svg',\n 'canvas',\n 'video',\n 'input',\n 'textarea',\n 'select',\n 'button',\n 'progress',\n 'meter',\n 'hr',\n]);\n\n/** Single-line text containers — produce one bar. */\nconst HEADING_TAGS = new Set(['h1', 'h2', 'h3', 'h4', 'h5', 'h6']);\n\n/** Multi-line text containers — produce N bars with a shortened last line. */\nconst PARAGRAPH_TAGS = new Set(['p', 'blockquote']);\n\n/** Inline text — single bar, but inherits parent font sizing. */\nconst INLINE_TEXT_TAGS = new Set([\n 'span',\n 'a',\n 'small',\n 'strong',\n 'em',\n 'code',\n 'time',\n 'label',\n 'b',\n 'i',\n 'mark',\n]);\n\nexport interface BuildOptions {\n animationClass: string | null;\n /** Max recursion depth — guards runaway templates. Default 8. */\n maxDepth?: number;\n /**\n * Hard cap on emitted skeleton nodes. Default 300. A 200-row table doesn't\n * need 200 distinct skeleton rows on first paint; cap and stop early.\n */\n maxNodes?: number;\n}\n\nconst DEFAULT_MAX_DEPTH = 8;\nconst DEFAULT_MAX_NODES = 300;\n\ninterface WalkState {\n emitted: number;\n cap: number;\n}\n\n/**\n * Walk a slot's vnode tree and produce a skeleton that mirrors its rendered\n * structure: same wrapping tags, same `class` strings (so flex/grid/spacing/\n * sizing utilities still apply), but text/atomic leaves replaced with shimmer\n * blocks. The result renders correctly on the FIRST paint without any DOM\n * measurement, as long as the slot's template renders structure even when its\n * data is empty (use `v-if`/`v-else` to swap content, not to gate the wrapper).\n *\n * Performance: `maxNodes` caps the work. When the cap is hit we stop emitting\n * — the caller still gets a valid skeleton, just clipped at the budget. A 1000-\n * row list renders ~300 skeleton rows on first paint and then the measured cache\n * takes over for subsequent loads.\n */\nexport function buildStructuralSkeleton(\n vnodes: VNodeChild | VNodeArrayChildren | undefined | null,\n opts: BuildOptions\n): VNode[] {\n const maxDepth = opts.maxDepth ?? DEFAULT_MAX_DEPTH;\n const state: WalkState = { emitted: 0, cap: opts.maxNodes ?? DEFAULT_MAX_NODES };\n const out: VNode[] = [];\n walk(vnodes, opts, 0, maxDepth, state, out);\n return out;\n}\n\nfunction walk(\n input: VNodeChild | VNodeArrayChildren | undefined | null,\n opts: BuildOptions,\n depth: number,\n max: number,\n state: WalkState,\n out: VNode[]\n): void {\n if (state.emitted >= state.cap) return;\n if (input == null || typeof input === 'boolean') return;\n\n if (Array.isArray(input)) {\n for (let i = 0; i < input.length; i++) {\n if (state.emitted >= state.cap) return;\n walk(input[i] as VNodeChild, opts, depth, max, state, out);\n }\n return;\n }\n\n if (typeof input === 'string' || typeof input === 'number') {\n const str = String(input).trim();\n if (str) push(out, textBar(opts.animationClass), state);\n return;\n }\n\n const v = input as VNode;\n const type = v.type;\n\n if (type === Comment) return;\n\n if (type === Text) {\n const t = typeof v.children === 'string' ? v.children.trim() : '';\n if (t) push(out, textBar(opts.animationClass), state);\n return;\n }\n\n if (type === Fragment) {\n walk(v.children as VNodeArrayChildren, opts, depth, max, state, out);\n return;\n }\n\n if (typeof type === 'string') {\n push(out, transformElement(v, type.toLowerCase(), opts, depth, max, state), state);\n return;\n }\n\n /* Component vnode — we can't introspect its template, so render an opaque\n * skeleton block carrying any utility classes the user attached to it. */\n if (typeof type === 'object' || typeof type === 'function') {\n push(\n out,\n h('div', {\n class: ['a-skel-block', v.props?.class, opts.animationClass],\n style: v.props?.style as Record<string, string>,\n }),\n state\n );\n }\n}\n\nfunction push(out: VNode[], vn: VNode, state: WalkState): void {\n if (state.emitted >= state.cap) return;\n out.push(vn);\n state.emitted++;\n}\n\nfunction transformElement(\n v: VNode,\n tag: string,\n opts: BuildOptions,\n depth: number,\n max: number,\n state: WalkState\n): VNode {\n const cls = v.props?.class;\n const styl = v.props?.style as Record<string, string> | string | undefined;\n\n if (ATOMIC_TAGS.has(tag)) {\n return h('div', { class: ['a-skel-block', cls, opts.animationClass], style: styl });\n }\n\n if (HEADING_TAGS.has(tag)) {\n return h(tag, { class: cls, style: styl }, [textBar(opts.animationClass)]);\n }\n\n if (PARAGRAPH_TAGS.has(tag)) {\n const children = v.children;\n const recursedChildren: VNode[] = [];\n walk(children as VNodeArrayChildren, opts, depth + 1, max, state, recursedChildren);\n if (recursedChildren.length > 0) return h(tag, { class: cls, style: styl }, recursedChildren);\n const lines = estimateLines(children, 3);\n return h(tag, { class: cls, style: styl }, multiLineBars(lines, opts.animationClass));\n }\n\n if (INLINE_TEXT_TAGS.has(tag)) {\n const children = v.children;\n const recursedChildren: VNode[] = [];\n walk(children as VNodeArrayChildren, opts, depth + 1, max, state, recursedChildren);\n if (recursedChildren.length > 0) return h(tag, { class: cls, style: styl }, recursedChildren);\n return h(tag, { class: cls, style: styl }, [textBar(opts.animationClass)]);\n }\n\n /* Generic container — keep its classes (flex/grid/padding/etc.) and recurse. */\n if (depth >= max) {\n return h('div', { class: ['a-skel-block', cls, opts.animationClass], style: styl });\n }\n const recursed: VNode[] = [];\n walk(v.children as VNodeArrayChildren, opts, depth + 1, max, state, recursed);\n if (recursed.length === 0) {\n /* Empty container in the source — render as a single block so the layout\n * still reserves space rather than collapsing to zero height. */\n return h('div', { class: ['a-skel-block', cls, opts.animationClass], style: styl });\n }\n return h(tag, { class: cls, style: styl }, recursed);\n}\n\nfunction estimateLines(children: unknown, max: number): number {\n if (typeof children !== 'string') return 1;\n const len = children.trim().length;\n if (len === 0)\n return 2; /* empty interpolation — assume 2 lines so the bar looks paragraph-shaped */\n if (len < 40) return 1;\n if (len < 100) return 2;\n return Math.min(max, 3);\n}\n\nfunction multiLineBars(lines: number, animationClass: string | null): VNode[] {\n const out: VNode[] = [];\n for (let i = 0; i < lines; i++) {\n out.push(textBar(animationClass, i === lines - 1 && lines > 1 ? 0.65 : 1));\n }\n return out;\n}\n\n/* Style objects for the two common bar shapes are reused across calls so a\n * structural skeleton with 200 text bars doesn't allocate 200 style objects. */\nconst BAR_STYLE_FULL = Object.freeze({\n display: 'inline-block',\n width: '100%',\n height: '0.75em',\n verticalAlign: 'middle',\n borderRadius: '4px',\n});\n\nconst PARTIAL_BAR_CACHE = new Map<number, Readonly<Record<string, string>>>();\n\nfunction partialBarStyle(widthFraction: number): Readonly<Record<string, string>> {\n /* Round to one decimal so 0.65, 0.7, 0.85 each get a single cached style. */\n const key = Math.round(widthFraction * 10) / 10;\n const hit = PARTIAL_BAR_CACHE.get(key);\n if (hit) return hit;\n const made = Object.freeze({\n display: 'inline-block',\n width: `${Math.round(key * 100)}%`,\n height: '0.75em',\n verticalAlign: 'middle',\n borderRadius: '4px',\n });\n PARTIAL_BAR_CACHE.set(key, made);\n return made;\n}\n\nfunction textBar(animationClass: string | null, widthFraction = 1): VNode {\n return h('span', {\n class: ['a-skel-block', 'a-skel-block--text', animationClass],\n style: widthFraction === 1 ? BAR_STYLE_FULL : partialBarStyle(widthFraction),\n });\n}\n","import { defineComponent, type PropType, type VNode, type VNodeArrayChildren } from 'vue';\nimport { buildStructuralSkeleton } from '../utils/buildStructuralSkeleton';\n\n/**\n * Renders a structural skeleton derived from a slot's vnode tree. Pure render\n * function — no template, no scoped styles — so the parent's class strings\n * pass through unchanged and Tailwind utilities continue to drive layout.\n *\n * `maxNodes` is forwarded to the walker; cap defaults to 300 (see\n * `buildStructuralSkeleton`). Beyond that the walk stops emitting and the cap\n * propagates back as a clipped tree, keeping first-paint bounded.\n */\nexport const StructuralSkeleton = defineComponent({\n name: 'StructuralSkeleton',\n props: {\n vnodes: {\n type: Array as unknown as PropType<VNodeArrayChildren>,\n required: true,\n },\n animation: {\n type: String as PropType<string | null>,\n default: null,\n },\n maxDepth: {\n type: Number,\n default: 8,\n },\n maxNodes: {\n type: Number,\n default: 300,\n },\n },\n setup(props) {\n return (): VNode[] =>\n buildStructuralSkeleton(props.vnodes, {\n animationClass: props.animation,\n maxDepth: props.maxDepth,\n maxNodes: props.maxNodes,\n });\n },\n});\n","<script setup lang=\"ts\">\nimport { computed, ref, shallowRef, useSlots, watch, type CSSProperties } from 'vue';\nimport { cn } from '@alikhalilll/a-ui-base';\nimport type { ASkeletonProps, ASkeletonSlots, CachedShape, ShapeNodeType } from '../types';\nimport { useShapeProbe } from '../composables/useShapeProbe';\nimport { getCached, setCached } from '../composables/useSkeletonCache';\nimport { fingerprintSlot } from '../utils/fingerprint';\nimport { StructuralSkeleton } from './StructuralSkeleton';\n\nconst props = withDefaults(defineProps<ASkeletonProps>(), {\n maxDepth: 6,\n maxNodes: 500,\n minNodeSize: 4,\n persist: false,\n animation: 'shimmer',\n fallback: 'shimmer',\n});\ndefineSlots<ASkeletonSlots>();\n\nconst slots = useSlots();\n\nconst resolvedKey = computed(() => props.cacheKey ?? fingerprintSlot(slots.default?.()));\n\nconst cached = shallowRef<CachedShape | undefined>(getCached(resolvedKey.value, props.persist));\n\nwatch(resolvedKey, (key) => {\n cached.value = getCached(key, props.persist);\n});\n\nconst wrapperRef = ref<HTMLElement | null>(null);\n\n/* Probe runs whenever the real content is mounted (loading=false). The getter\n * returns null during loading so the watch tears down its ResizeObserver. */\nuseShapeProbe(() => (props.loading ? null : wrapperRef.value), {\n maxDepth: props.maxDepth,\n maxNodes: props.maxNodes,\n minSize: props.minNodeSize,\n onCapture: (shape) => {\n setCached(resolvedKey.value, shape, props.persist);\n cached.value = shape;\n },\n});\n\nconst animationClass = computed(() =>\n props.animation === 'none' ? null : `a-skel-block--anim-${props.animation}`\n);\n\nconst layerStyle = computed<CSSProperties>(() =>\n cached.value ? { width: `${cached.value.width}px`, height: `${cached.value.height}px` } : {}\n);\n\n/* Pre-join the per-type class strings once per animation value so the render\n * loop doesn't allocate a new `[a, b, c]` array per node per frame — meaningful\n * when a cache holds hundreds of nodes. */\nconst blockClassByType = computed<Readonly<Record<ShapeNodeType, string>>>(() => {\n const anim = animationClass.value;\n const suffix = anim ? ` ${anim}` : '';\n return Object.freeze({\n block: `a-skel-block a-skel-block--block${suffix}`,\n text: `a-skel-block a-skel-block--text${suffix}`,\n image: `a-skel-block a-skel-block--image${suffix}`,\n circle: `a-skel-block a-skel-block--circle${suffix}`,\n });\n});\n\n/* Cache-miss fallback path: walk the slot's vnodes synchronously so the FIRST\n * paint already shows a skeleton that mirrors the component's HTML structure\n * (same tags, classes, hierarchy → same flex/grid/spacing/sizing utilities\n * still apply). If the slot is empty / only renders comments (e.g. the user\n * gates the whole template on `v-if=\"data\"`), we get an empty array back and\n * fall through to the generic shimmer block. */\nconst structuralVNodes = computed(() => (props.loading ? (slots.default?.() ?? []) : []));\nconst hasStructure = computed(() => structuralVNodes.value.length > 0);\n</script>\n\n<template>\n <div\n ref=\"wrapperRef\"\n :class=\"cn('a-skeleton', props.class)\"\n :data-loading=\"props.loading ? '' : undefined\"\n >\n <template v-if=\"props.loading\">\n <!-- Cache hit: pixel-aligned positioned blocks from a previous measurement.\n Styles are pre-computed during capture so the loop below never calls\n a function or allocates a style object per node. -->\n <div\n v-if=\"cached\"\n class=\"a-skeleton__layer\"\n :style=\"layerStyle\"\n role=\"status\"\n aria-live=\"polite\"\n aria-busy=\"true\"\n >\n <template v-for=\"(node, idx) in cached.nodes\" :key=\"idx\">\n <template v-if=\"node.lineStyles\">\n <div\n v-for=\"(lineStyle, i) in node.lineStyles\"\n :key=\"`${idx}-${i}`\"\n :class=\"blockClassByType.text\"\n :style=\"lineStyle\"\n />\n </template>\n <div v-else :class=\"blockClassByType[node.type]\" :style=\"node.style\" />\n </template>\n </div>\n\n <!-- Cache miss + slot has structure: render a structural skeleton derived\n from the slot's vnode tree. First paint already looks right. -->\n <div\n v-else-if=\"hasStructure\"\n class=\"a-skeleton__structural\"\n role=\"status\"\n aria-live=\"polite\"\n aria-busy=\"true\"\n >\n <StructuralSkeleton\n :vnodes=\"structuralVNodes\"\n :animation=\"animationClass\"\n :max-depth=\"maxDepth\"\n :max-nodes=\"maxNodes\"\n />\n </div>\n\n <!-- Cache miss + nothing to walk: generic shimmer. -->\n <div v-else class=\"a-skeleton__fallback\" role=\"status\" aria-busy=\"true\">\n <slot name=\"fallback\">\n <div\n class=\"a-skel-block a-skel-block--block a-skel-fallback-default\"\n :class=\"animationClass\"\n />\n </slot>\n </div>\n </template>\n\n <slot v-else />\n </div>\n</template>\n\n<style scoped>\n.a-skeleton {\n display: block;\n position: relative;\n}\n\n/* `.a-skeleton__layer` + `.a-skeleton__layer > .a-skel-block` layout/containment\n * live in `styles.src.css` so they're shared with the public `<ASkeletonLayer>`\n * component. */\n\n.a-skeleton__structural :deep(*) {\n /* Disable text caret/selection on the structural copy so it doesn't look\n * interactive. Layout (flex/grid/spacing/sizing) flows through unchanged. */\n user-select: none;\n pointer-events: none;\n}\n\n.a-skeleton__structural :deep(button),\n.a-skeleton__structural :deep(input),\n.a-skeleton__structural :deep(a) {\n cursor: default;\n}\n\n.a-skeleton__fallback :deep(.a-skel-fallback-default) {\n width: 100%;\n height: 4rem;\n border-radius: 0.5rem;\n}\n</style>\n","<script setup lang=\"ts\">\nimport { computed, type CSSProperties } from 'vue';\nimport { cn } from '@alikhalilll/a-ui-base';\nimport type { ASkeletonLayerProps, ShapeNodeType } from '../types';\n\nconst props = withDefaults(defineProps<ASkeletonLayerProps>(), {\n animation: 'shimmer',\n});\n\nconst animationClass = computed(() =>\n props.animation === 'none' ? null : `a-skel-block--anim-${props.animation}`\n);\n\nconst layerStyle = computed<CSSProperties>(() =>\n props.shape ? { width: `${props.shape.width}px`, height: `${props.shape.height}px` } : {}\n);\n\n/* Pre-joined per-type class strings — see ASkeleton.vue for the rationale. */\nconst blockClassByType = computed<Readonly<Record<ShapeNodeType, string>>>(() => {\n const anim = animationClass.value;\n const suffix = anim ? ` ${anim}` : '';\n return Object.freeze({\n block: `a-skel-block a-skel-block--block${suffix}`,\n text: `a-skel-block a-skel-block--text${suffix}`,\n image: `a-skel-block a-skel-block--image${suffix}`,\n circle: `a-skel-block a-skel-block--circle${suffix}`,\n });\n});\n</script>\n\n<template>\n <div\n v-if=\"shape\"\n :class=\"cn('a-skeleton__layer', props.class)\"\n :style=\"layerStyle\"\n role=\"status\"\n aria-live=\"polite\"\n aria-busy=\"true\"\n >\n <template v-for=\"(node, idx) in shape.nodes\" :key=\"idx\">\n <template v-if=\"node.lineStyles\">\n <div\n v-for=\"(lineStyle, i) in node.lineStyles\"\n :key=\"`${idx}-${i}`\"\n :class=\"blockClassByType.text\"\n :style=\"lineStyle\"\n />\n </template>\n <div v-else :class=\"blockClassByType[node.type]\" :style=\"node.style\" />\n </template>\n </div>\n</template>\n","<script setup lang=\"ts\">\nimport { computed, type CSSProperties } from 'vue';\nimport { cn } from '@alikhalilll/a-ui-base';\nimport type { ASkeletonBlockProps } from '../types';\n\nconst props = withDefaults(defineProps<ASkeletonBlockProps>(), {\n type: 'block',\n animation: 'shimmer',\n lines: 1,\n});\n\nconst animationClass = computed(() =>\n props.animation === 'none' ? null : `a-skel-block--anim-${props.animation}`\n);\n\nconst blockClass = computed(() => [\n 'a-skel-block',\n `a-skel-block--${props.type}`,\n animationClass.value,\n]);\n\nfunction toLength(v: number | string | undefined): string | undefined {\n if (v === undefined) return undefined;\n return typeof v === 'number' ? `${v}px` : v;\n}\n\nconst radiusValue = computed(() =>\n props.type === 'circle' && props.radius === undefined ? '50%' : toLength(props.radius)\n);\n\nconst blockStyle = computed<CSSProperties>(() => ({\n width: toLength(props.w),\n height: toLength(props.h),\n borderRadius: radiusValue.value,\n}));\n\nconst isMultiLineText = computed(() => props.type === 'text' && props.lines > 1);\n</script>\n\n<template>\n <div\n v-if=\"isMultiLineText\"\n :class=\"cn('a-skel-block-stack', props.class)\"\n role=\"status\"\n aria-busy=\"true\"\n >\n <div\n v-for=\"i in props.lines\"\n :key=\"i\"\n :class=\"blockClass\"\n :style=\"{\n height: blockStyle.height ?? '0.75em',\n width: i === props.lines ? '70%' : '100%',\n borderRadius: blockStyle.borderRadius ?? '4px',\n }\"\n />\n </div>\n <div\n v-else\n :class=\"cn(blockClass, props.class)\"\n :style=\"blockStyle\"\n role=\"status\"\n aria-busy=\"true\"\n />\n</template>\n\n<style scoped>\n.a-skel-block-stack {\n display: flex;\n flex-direction: column;\n gap: 0.35rem;\n width: 100%;\n}\n</style>\n","import { shallowRef, type Ref } from 'vue';\nimport type { CachedShape } from '../types';\nimport { useShapeProbe } from './useShapeProbe';\nimport { clearCached, getCached, setCached } from './useSkeletonCache';\nimport { walkDom } from '../utils/walkDom';\n\nexport interface UseSkeletonOptions {\n /**\n * Identifier for the shape cache. Pass the same key wherever the same visual\n * structure appears so the captured shape replays everywhere.\n */\n cacheKey: string;\n /**\n * Getter for the element to measure. When it returns `null` (e.g. during the\n * loading state), no measurement happens. The probe re-arms automatically\n * once the getter returns an element again.\n *\n * Typical pattern: return `null` while loading so the real content is the\n * only thing ever measured, then the cache feeds the skeleton on the next\n * load.\n */\n target?: () => HTMLElement | null;\n /** Persist to `localStorage` so first-paint after reload skips the cold start. Default false. */\n persist?: boolean;\n /** Forwarded to `walkDom`. Default 6. */\n maxDepth?: number;\n /** Forwarded to `walkDom`. Default 500. */\n maxNodes?: number;\n /** Forwarded to `walkDom`. Default 4. */\n minSize?: number;\n /** Forwarded to `useShapeProbe`. Default 150 ms. */\n resizeDebounceMs?: number;\n}\n\nexport interface UseSkeletonReturn {\n /** Reactive captured shape — `undefined` on cache miss. Replace your skeleton render path. */\n shape: Readonly<Ref<CachedShape | undefined>>;\n /**\n * Synchronously measure the current target and write to cache. Returns the\n * captured shape, or `undefined` if the target wasn't available / nothing\n * worth measuring was rendered. Use when you want to force a capture outside\n * the automatic `ResizeObserver` flow (e.g. after an animation settles).\n */\n captureNow: () => CachedShape | undefined;\n /** Drop the cache entry for this `cacheKey`. The reactive `shape` flips to `undefined`. */\n clear: () => void;\n}\n\n/**\n * High-level building block for custom skeleton UIs. Wires up the probe + cache\n * + reactivity so the consumer just renders something using the reactive shape:\n *\n * ```ts\n * const containerRef = ref<HTMLElement | null>(null);\n * const { shape } = useSkeleton({\n * cacheKey: 'user-card',\n * target: () => (loading.value ? null : containerRef.value),\n * });\n * ```\n *\n * ```vue\n * <div ref=\"containerRef\">\n * <ASkeletonLayer v-if=\"loading && shape\" :shape=\"shape\" />\n * <UserCard v-else :data=\"user\" />\n * </div>\n * ```\n *\n * For more control, drop down to `useShapeProbe` + `getCached`/`setCached` and\n * compose your own.\n */\nexport function useSkeleton(options: UseSkeletonOptions): UseSkeletonReturn {\n const persist = options.persist ?? false;\n const maxDepth = options.maxDepth ?? 6;\n\n const shape = shallowRef<CachedShape | undefined>(getCached(options.cacheKey, persist));\n\n if (options.target) {\n const getTarget = options.target;\n useShapeProbe(getTarget, {\n maxDepth,\n maxNodes: options.maxNodes,\n minSize: options.minSize,\n resizeDebounceMs: options.resizeDebounceMs,\n onCapture: (captured) => {\n setCached(options.cacheKey, captured, persist);\n shape.value = captured;\n },\n });\n }\n\n function captureNow(): CachedShape | undefined {\n const el = options.target?.();\n if (!el || typeof window === 'undefined') return undefined;\n const captured = walkDom(el, {\n maxDepth,\n maxNodes: options.maxNodes,\n minSize: options.minSize,\n });\n if (captured.width <= 0 || captured.height <= 0 || captured.nodes.length === 0)\n return undefined;\n setCached(options.cacheKey, captured, persist);\n shape.value = captured;\n return captured;\n }\n\n function clear(): void {\n clearCached(options.cacheKey);\n shape.value = undefined;\n }\n\n return { shape, captureNow, clear };\n}\n"],"x_google_ignoreList":[0,1],"mappings":"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"}
1
+ {"version":3,"file":"index.cjs","names":["DEFAULT_MAX_NODES","Comment","Text","Fragment","Comment","Text","Fragment"],"sources":["../../../../node_modules/.pnpm/clsx@2.1.1/node_modules/clsx/dist/clsx.mjs","../../../../node_modules/.pnpm/tailwind-merge@3.6.0/node_modules/tailwind-merge/dist/bundle-mjs.mjs","../../AUiBase/dist/index.js","../src/utils/walkDom.ts","../src/composables/useShapeProbe.ts","../src/composables/useSkeletonCache.ts","../src/utils/fingerprint.ts","../src/utils/buildStructuralSkeleton.ts","../src/components/StructuralSkeleton.ts","../src/components/ASkeleton.vue","../src/components/ASkeletonLayer.vue","../src/components/ASkeletonBlock.vue","../src/composables/useSkeleton.ts"],"sourcesContent":["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 postfixLookupClassGroupIds: createPostfixLookupClassGroupIds(config),\n ...createClassGroupUtils(config)\n});\nconst createPostfixLookupClassGroupIds = config => {\n const lookup = Object.create(null);\n const classGroupIds = config.postfixLookupClassGroups;\n if (classGroupIds) {\n for (let i = 0; i < classGroupIds.length; i++) {\n lookup[classGroupIds[i]] = true;\n }\n }\n return lookup;\n};\nconst SPLIT_CLASSES_REGEX = /\\s+/;\nconst mergeClassList = (classList, configUtils) => {\n const {\n parseClassName,\n getClassGroupId,\n getConflictingClassGroupIds,\n sortModifiers,\n postfixLookupClassGroupIds\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;\n if (hasPostfixModifier) {\n const baseClassNameWithoutPostfix = baseClassName.substring(0, maybePostfixModifierPosition);\n classGroupId = getClassGroupId(baseClassNameWithoutPostfix);\n const classGroupIdWithPostfix = classGroupId && postfixLookupClassGroupIds[classGroupId] ? getClassGroupId(baseClassName) : undefined;\n if (classGroupIdWithPostfix && classGroupIdWithPostfix !== classGroupId) {\n classGroupId = classGroupIdWithPostfix;\n hasPostfixModifier = false;\n }\n } else {\n classGroupId = getClassGroupId(baseClassName);\n }\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+)?\\/\\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 isNamedContainerQuery = value => value.startsWith('@container') && (value[10] === '/' && value[11] !== undefined || value[11] === 's' && value[16] !== undefined && value.startsWith('-size/', 10) || value[11] === 'n' && value[18] !== undefined && value.startsWith('-normal/', 10));\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 isArbitraryWeight = value => getIsArbitraryValue(value, isLabelWeight, isAny);\nconst isArbitraryFamilyName = value => getIsArbitraryValue(value, isLabelFamilyName, isNever);\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);\nconst isArbitraryVariableWeight = value => getIsArbitraryVariable(value, isLabelWeight, 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 isLabelWeight = label => label === 'number' || label === 'weight';\nconst isLabelShadow = label => label === 'shadow';\nconst validators = /*#__PURE__*/Object.defineProperty({\n __proto__: null,\n isAny,\n isAnyNonArbitrary,\n isArbitraryFamilyName,\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 isArbitraryVariableWeight,\n isArbitraryWeight,\n isFraction,\n isInteger,\n isNamedContainerQuery,\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 scaleSizingInline = () => [isFraction, 'screen', 'full', 'dvw', 'lvw', 'svw', 'min', 'max', 'fit', ...scaleUnambiguousSpacing()];\n const scaleSizingBlock = () => [isFraction, 'screen', 'full', 'lh', 'dvh', 'lvh', '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 * Container Type\n * @see https://tailwindcss.com/docs/responsive-design#container-queries\n */\n 'container-type': [{\n '@container': ['', 'normal', 'size', isArbitraryVariable, isArbitraryValue]\n }],\n /**\n * Container Name\n * @see https://tailwindcss.com/docs/responsive-design#named-containers\n */\n 'container-named': [isNamedContainerQuery],\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 * Inset\n * @see https://tailwindcss.com/docs/top-right-bottom-left\n */\n inset: [{\n inset: scaleInset()\n }],\n /**\n * Inset Inline\n * @see https://tailwindcss.com/docs/top-right-bottom-left\n */\n 'inset-x': [{\n 'inset-x': scaleInset()\n }],\n /**\n * Inset Block\n * @see https://tailwindcss.com/docs/top-right-bottom-left\n */\n 'inset-y': [{\n 'inset-y': scaleInset()\n }],\n /**\n * Inset Inline Start\n * @see https://tailwindcss.com/docs/top-right-bottom-left\n * @todo class group will be renamed to `inset-s` in next major release\n */\n start: [{\n 'inset-s': scaleInset(),\n /**\n * @deprecated since Tailwind CSS v4.2.0 in favor of `inset-s-*` utilities.\n * @see https://github.com/tailwindlabs/tailwindcss/pull/19613\n */\n start: scaleInset()\n }],\n /**\n * Inset Inline End\n * @see https://tailwindcss.com/docs/top-right-bottom-left\n * @todo class group will be renamed to `inset-e` in next major release\n */\n end: [{\n 'inset-e': scaleInset(),\n /**\n * @deprecated since Tailwind CSS v4.2.0 in favor of `inset-e-*` utilities.\n * @see https://github.com/tailwindlabs/tailwindcss/pull/19613\n */\n end: scaleInset()\n }],\n /**\n * Inset Block Start\n * @see https://tailwindcss.com/docs/top-right-bottom-left\n */\n 'inset-bs': [{\n 'inset-bs': scaleInset()\n }],\n /**\n * Inset Block End\n * @see https://tailwindcss.com/docs/top-right-bottom-left\n */\n 'inset-be': [{\n 'inset-be': 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 Inline\n * @see https://tailwindcss.com/docs/padding\n */\n px: [{\n px: scaleUnambiguousSpacing()\n }],\n /**\n * Padding Block\n * @see https://tailwindcss.com/docs/padding\n */\n py: [{\n py: scaleUnambiguousSpacing()\n }],\n /**\n * Padding Inline Start\n * @see https://tailwindcss.com/docs/padding\n */\n ps: [{\n ps: scaleUnambiguousSpacing()\n }],\n /**\n * Padding Inline End\n * @see https://tailwindcss.com/docs/padding\n */\n pe: [{\n pe: scaleUnambiguousSpacing()\n }],\n /**\n * Padding Block Start\n * @see https://tailwindcss.com/docs/padding\n */\n pbs: [{\n pbs: scaleUnambiguousSpacing()\n }],\n /**\n * Padding Block End\n * @see https://tailwindcss.com/docs/padding\n */\n pbe: [{\n pbe: 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 Inline\n * @see https://tailwindcss.com/docs/margin\n */\n mx: [{\n mx: scaleMargin()\n }],\n /**\n * Margin Block\n * @see https://tailwindcss.com/docs/margin\n */\n my: [{\n my: scaleMargin()\n }],\n /**\n * Margin Inline Start\n * @see https://tailwindcss.com/docs/margin\n */\n ms: [{\n ms: scaleMargin()\n }],\n /**\n * Margin Inline End\n * @see https://tailwindcss.com/docs/margin\n */\n me: [{\n me: scaleMargin()\n }],\n /**\n * Margin Block Start\n * @see https://tailwindcss.com/docs/margin\n */\n mbs: [{\n mbs: scaleMargin()\n }],\n /**\n * Margin Block End\n * @see https://tailwindcss.com/docs/margin\n */\n mbe: [{\n mbe: 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 * Inline Size\n * @see https://tailwindcss.com/docs/width\n */\n 'inline-size': [{\n inline: ['auto', ...scaleSizingInline()]\n }],\n /**\n * Min-Inline Size\n * @see https://tailwindcss.com/docs/min-width\n */\n 'min-inline-size': [{\n 'min-inline': ['auto', ...scaleSizingInline()]\n }],\n /**\n * Max-Inline Size\n * @see https://tailwindcss.com/docs/max-width\n */\n 'max-inline-size': [{\n 'max-inline': ['none', ...scaleSizingInline()]\n }],\n /**\n * Block Size\n * @see https://tailwindcss.com/docs/height\n */\n 'block-size': [{\n block: ['auto', ...scaleSizingBlock()]\n }],\n /**\n * Min-Block Size\n * @see https://tailwindcss.com/docs/min-height\n */\n 'min-block-size': [{\n 'min-block': ['auto', ...scaleSizingBlock()]\n }],\n /**\n * Max-Block Size\n * @see https://tailwindcss.com/docs/max-height\n */\n 'max-block-size': [{\n 'max-block': ['none', ...scaleSizingBlock()]\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, isArbitraryVariableWeight, isArbitraryWeight]\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, isArbitraryFamilyName, themeFont]\n }],\n /**\n * Font Feature Settings\n * @see https://tailwindcss.com/docs/font-feature-settings\n */\n 'font-features': [{\n 'font-features': [isArbitraryValue]\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 * Tab Size\n * @see https://tailwindcss.com/docs/tab-size\n */\n 'tab-size': [{\n tab: [isInteger, isArbitraryVariable, isArbitraryValue]\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 Inline\n * @see https://tailwindcss.com/docs/border-width\n */\n 'border-w-x': [{\n 'border-x': scaleBorderWidth()\n }],\n /**\n * Border Width Block\n * @see https://tailwindcss.com/docs/border-width\n */\n 'border-w-y': [{\n 'border-y': scaleBorderWidth()\n }],\n /**\n * Border Width Inline Start\n * @see https://tailwindcss.com/docs/border-width\n */\n 'border-w-s': [{\n 'border-s': scaleBorderWidth()\n }],\n /**\n * Border Width Inline End\n * @see https://tailwindcss.com/docs/border-width\n */\n 'border-w-e': [{\n 'border-e': scaleBorderWidth()\n }],\n /**\n * Border Width Block Start\n * @see https://tailwindcss.com/docs/border-width\n */\n 'border-w-bs': [{\n 'border-bs': scaleBorderWidth()\n }],\n /**\n * Border Width Block End\n * @see https://tailwindcss.com/docs/border-width\n */\n 'border-w-be': [{\n 'border-be': 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 Inline\n * @see https://tailwindcss.com/docs/border-color\n */\n 'border-color-x': [{\n 'border-x': scaleColor()\n }],\n /**\n * Border Color Block\n * @see https://tailwindcss.com/docs/border-color\n */\n 'border-color-y': [{\n 'border-y': scaleColor()\n }],\n /**\n * Border Color Inline Start\n * @see https://tailwindcss.com/docs/border-color\n */\n 'border-color-s': [{\n 'border-s': scaleColor()\n }],\n /**\n * Border Color Inline End\n * @see https://tailwindcss.com/docs/border-color\n */\n 'border-color-e': [{\n 'border-e': scaleColor()\n }],\n /**\n * Border Color Block Start\n * @see https://tailwindcss.com/docs/border-color\n */\n 'border-color-bs': [{\n 'border-bs': scaleColor()\n }],\n /**\n * Border Color Block End\n * @see https://tailwindcss.com/docs/border-color\n */\n 'border-color-be': [{\n 'border-be': 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 * Zoom\n * @see https://tailwindcss.com/docs/zoom\n */\n zoom: [{\n zoom: [isInteger, isArbitraryVariable, isArbitraryValue]\n }],\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 * Scrollbar Thumb Color\n * @see https://tailwindcss.com/docs/scrollbar-color\n */\n 'scrollbar-thumb-color': [{\n 'scrollbar-thumb': scaleColor()\n }],\n /**\n * Scrollbar Track Color\n * @see https://tailwindcss.com/docs/scrollbar-color\n */\n 'scrollbar-track-color': [{\n 'scrollbar-track': scaleColor()\n }],\n /**\n * Scrollbar Gutter\n * @see https://tailwindcss.com/docs/scrollbar-gutter\n */\n 'scrollbar-gutter': [{\n 'scrollbar-gutter': ['auto', 'stable', 'both']\n }],\n /**\n * Scrollbar Width\n * @see https://tailwindcss.com/docs/scrollbar-width\n */\n 'scrollbar-w': [{\n scrollbar: ['auto', 'thin', 'none']\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 Inline\n * @see https://tailwindcss.com/docs/scroll-margin\n */\n 'scroll-mx': [{\n 'scroll-mx': scaleUnambiguousSpacing()\n }],\n /**\n * Scroll Margin Block\n * @see https://tailwindcss.com/docs/scroll-margin\n */\n 'scroll-my': [{\n 'scroll-my': scaleUnambiguousSpacing()\n }],\n /**\n * Scroll Margin Inline Start\n * @see https://tailwindcss.com/docs/scroll-margin\n */\n 'scroll-ms': [{\n 'scroll-ms': scaleUnambiguousSpacing()\n }],\n /**\n * Scroll Margin Inline End\n * @see https://tailwindcss.com/docs/scroll-margin\n */\n 'scroll-me': [{\n 'scroll-me': scaleUnambiguousSpacing()\n }],\n /**\n * Scroll Margin Block Start\n * @see https://tailwindcss.com/docs/scroll-margin\n */\n 'scroll-mbs': [{\n 'scroll-mbs': scaleUnambiguousSpacing()\n }],\n /**\n * Scroll Margin Block End\n * @see https://tailwindcss.com/docs/scroll-margin\n */\n 'scroll-mbe': [{\n 'scroll-mbe': 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 Inline\n * @see https://tailwindcss.com/docs/scroll-padding\n */\n 'scroll-px': [{\n 'scroll-px': scaleUnambiguousSpacing()\n }],\n /**\n * Scroll Padding Block\n * @see https://tailwindcss.com/docs/scroll-padding\n */\n 'scroll-py': [{\n 'scroll-py': scaleUnambiguousSpacing()\n }],\n /**\n * Scroll Padding Inline Start\n * @see https://tailwindcss.com/docs/scroll-padding\n */\n 'scroll-ps': [{\n 'scroll-ps': scaleUnambiguousSpacing()\n }],\n /**\n * Scroll Padding Inline End\n * @see https://tailwindcss.com/docs/scroll-padding\n */\n 'scroll-pe': [{\n 'scroll-pe': scaleUnambiguousSpacing()\n }],\n /**\n * Scroll Padding Block Start\n * @see https://tailwindcss.com/docs/scroll-padding\n */\n 'scroll-pbs': [{\n 'scroll-pbs': scaleUnambiguousSpacing()\n }],\n /**\n * Scroll Padding Block End\n * @see https://tailwindcss.com/docs/scroll-padding\n */\n 'scroll-pbe': [{\n 'scroll-pbe': 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 'container-named': ['container-type'],\n overflow: ['overflow-x', 'overflow-y'],\n overscroll: ['overscroll-x', 'overscroll-y'],\n inset: ['inset-x', 'inset-y', 'inset-bs', 'inset-be', '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', 'pbs', 'pbe', 'pt', 'pr', 'pb', 'pl'],\n px: ['pr', 'pl'],\n py: ['pt', 'pb'],\n m: ['mx', 'my', 'ms', 'me', 'mbs', 'mbe', '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-bs', 'border-w-be', '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-bs', 'border-color-be', '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-mbs', 'scroll-mbe', '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-pbs', 'scroll-pbe', '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 postfixLookupClassGroups: ['container-type'],\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, 'postfixLookupClassGroups', override.postfixLookupClassGroups);\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, 'postfixLookupClassGroups');\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","import { clsx } from \"clsx\";\nimport { twMerge } from \"tailwind-merge\";\n//#region src/cn.ts\nfunction cn(...inputs) {\n\treturn twMerge(clsx(inputs));\n}\n//#endregion\n//#region src/sizes.ts\nconst SIZES = [\n\t\"xs\",\n\t\"sm\",\n\t\"md\",\n\t\"lg\",\n\t\"xl\"\n];\nconst DEFAULT_SIZE = \"md\";\n/** Tailwind height utility per size. md uses an arbitrary value because 43px isn't on the spacing scale. */\nconst controlHeight = {\n\txs: \"h-7\",\n\tsm: \"h-9\",\n\tmd: \"h-[43px]\",\n\tlg: \"h-[52px]\",\n\txl: \"h-[60px]\"\n};\nconst controlPaddingX = {\n\txs: \"px-2\",\n\tsm: \"px-2.5\",\n\tmd: \"px-3\",\n\tlg: \"px-3.5\",\n\txl: \"px-4\"\n};\nconst controlTextSize = {\n\txs: \"text-xs\",\n\tsm: \"text-sm\",\n\tmd: \"text-sm\",\n\tlg: \"text-base\",\n\txl: \"text-base\"\n};\n/** Pixel values exposed so non-template code (icons, ResizeObserver, etc.) can read the height. */\nconst controlHeightPx = {\n\txs: 28,\n\tsm: 36,\n\tmd: 43,\n\tlg: 52,\n\txl: 60\n};\n//#endregion\nexport { DEFAULT_SIZE, SIZES, cn, controlHeight, controlHeightPx, controlPaddingX, controlTextSize };\n\n//# sourceMappingURL=index.js.map","import type { CSSProperties } from 'vue';\nimport type { CachedShape, ShapeNode, ShapeNodeType } from '../types';\n\nexport interface WalkOptions {\n maxDepth: number;\n /** Hard cap on captured nodes. Default 500. */\n maxNodes?: number;\n /** Min CSS-pixel size (either axis) for an element to be emitted. Default 4. */\n minSize?: number;\n}\n\nconst DEFAULT_MAX_NODES = 500;\nconst DEFAULT_MIN_SIZE = 4;\n\n/* Atomic elements — never recursed into; rendered as a single block. */\nconst LEAF_TAGS = new Set([\n 'IMG',\n 'SVG',\n 'CANVAS',\n 'VIDEO',\n 'INPUT',\n 'TEXTAREA',\n 'SELECT',\n 'BUTTON',\n 'PROGRESS',\n 'METER',\n 'HR',\n]);\n\n/**\n * Walk `root`'s descendants and produce a list of shimmer blocks that mirror its\n * rendered layout. Coordinates are relative to `root`'s top-left so the result can\n * be replayed in any container of the same size.\n *\n * Performance:\n * - `maxNodes` caps the walk so a 5000-row table doesn't lock up the main thread.\n * - `minSize` filters out hairlines (1-2 px paddings, decorative dots) that\n * inflate node count without adding visual signal.\n * - All `getBoundingClientRect` / `getComputedStyle` reads happen in a single\n * top-down pass with no intervening writes, so the browser does one layout\n * up front and serves cached values from then on (no layout thrashing).\n * - Each emitted `ShapeNode` has a frozen pre-computed `style` (and `lineStyles`\n * for multi-line text) so the render path is allocation-free.\n */\nexport function walkDom(root: HTMLElement, options: WalkOptions): CachedShape {\n const maxNodes = options.maxNodes ?? DEFAULT_MAX_NODES;\n const minSize = options.minSize ?? DEFAULT_MIN_SIZE;\n\n const nodes: ShapeNode[] = [];\n const rootRect = root.getBoundingClientRect();\n let truncated = false;\n\n function visit(el: Element, depth: number): void {\n if (nodes.length >= maxNodes) {\n truncated = true;\n return;\n }\n\n const html = el as HTMLElement;\n if (html.dataset?.skeletonIgnore !== undefined) return;\n\n const cs = window.getComputedStyle(el);\n if (cs.display === 'none' || cs.visibility === 'hidden' || cs.opacity === '0') return;\n\n const rect = el.getBoundingClientRect();\n if (rect.width < minSize || rect.height < minSize) return;\n\n const tag = el.tagName.toUpperCase();\n const isLeafTag = LEAF_TAGS.has(tag);\n const hasStop = html.dataset?.skeletonStop !== undefined;\n const childElements: Element[] = [];\n for (let i = 0; i < el.children.length; i++) {\n const c = el.children[i];\n if ((c as HTMLElement).dataset?.skeletonIgnore === undefined) childElements.push(c);\n }\n const hasOwnText = hasDirectTextContent(el);\n const reachedDepth = depth >= options.maxDepth;\n const isLeaf = isLeafTag || hasStop || reachedDepth || childElements.length === 0;\n\n if (isLeaf) {\n const node = elementToShape(tag, cs, rect, rootRect, hasOwnText);\n if (node) nodes.push(node);\n return;\n }\n\n for (let i = 0; i < childElements.length; i++) {\n if (nodes.length >= maxNodes) {\n truncated = true;\n return;\n }\n visit(childElements[i], depth + 1);\n }\n }\n\n for (let i = 0; i < root.children.length; i++) {\n if (nodes.length >= maxNodes) {\n truncated = true;\n break;\n }\n visit(root.children[i], 1);\n }\n\n return Object.freeze({\n nodes: Object.freeze(nodes),\n width: Math.round(rootRect.width),\n height: Math.round(rootRect.height),\n truncated,\n }) as CachedShape;\n}\n\nfunction hasDirectTextContent(el: Element): boolean {\n for (let i = 0; i < el.childNodes.length; i++) {\n const node = el.childNodes[i];\n if (node.nodeType === Node.TEXT_NODE && (node.textContent ?? '').trim().length > 0) {\n return true;\n }\n }\n return false;\n}\n\nfunction elementToShape(\n tag: string,\n cs: CSSStyleDeclaration,\n rect: DOMRect,\n origin: DOMRect,\n hasText: boolean\n): ShapeNode | null {\n const x = Math.round(rect.left - origin.left);\n const y = Math.round(rect.top - origin.top);\n const w = Math.round(rect.width);\n const h = Math.round(rect.height);\n\n const radius = parseFloat(cs.borderRadius) || 0;\n const minDim = Math.min(w, h);\n const isCircle = radius >= minDim / 2 - 1 && Math.abs(w - h) <= 2 && minDim > 0;\n\n let type: ShapeNodeType;\n let resolvedRadius = radius;\n let lines: number | undefined;\n let lineHeight: number | undefined;\n\n if (tag === 'IMG' || tag === 'SVG' || tag === 'VIDEO' || tag === 'CANVAS') {\n type = 'image';\n } else if (isCircle) {\n type = 'circle';\n resolvedRadius = Math.floor(minDim / 2);\n } else if (hasText) {\n type = 'text';\n lineHeight = Math.round(parseFloat(cs.lineHeight) || parseFloat(cs.fontSize) * 1.4 || 16);\n lines = Math.max(1, Math.round(h / lineHeight));\n resolvedRadius = Math.min(radius, 4);\n } else {\n type = 'block';\n }\n\n return freezeShape({\n type,\n x,\n y,\n w,\n h,\n radius: resolvedRadius,\n lines,\n lineHeight,\n });\n}\n\n/**\n * Pre-compute (and freeze) the inline styles used at render time. Doing it once\n * here means rendering 500 blocks doesn't allocate 500 style objects per frame.\n */\nfunction freezeShape(node: {\n type: ShapeNodeType;\n x: number;\n y: number;\n w: number;\n h: number;\n radius: number;\n lines?: number;\n lineHeight?: number;\n}): ShapeNode {\n const style: CSSProperties = Object.freeze({\n left: `${node.x}px`,\n top: `${node.y}px`,\n width: `${node.w}px`,\n height: `${node.h}px`,\n borderRadius: `${node.radius}px`,\n });\n\n let lineStyles: ReadonlyArray<Readonly<CSSProperties>> | undefined;\n if (node.type === 'text' && node.lines && node.lines > 1) {\n const lh = node.lineHeight ?? Math.round(node.h / node.lines);\n const barHeight = Math.max(8, Math.round(lh * 0.7));\n const widthFull = `${node.w}px`;\n const widthLast = `${Math.max(40, Math.round(node.w * 0.7))}px`;\n const heightStr = `${barHeight}px`;\n const radiusStr = `${node.radius}px`;\n const arr: Readonly<CSSProperties>[] = [];\n for (let i = 1; i <= node.lines; i++) {\n const isLast = i === node.lines;\n arr.push(\n Object.freeze<CSSProperties>({\n left: `${node.x}px`,\n top: `${node.y + (i - 1) * lh}px`,\n width: isLast ? widthLast : widthFull,\n height: heightStr,\n borderRadius: radiusStr,\n })\n );\n }\n lineStyles = Object.freeze(arr);\n }\n\n return Object.freeze({\n type: node.type,\n x: node.x,\n y: node.y,\n w: node.w,\n h: node.h,\n radius: node.radius,\n lines: node.lines,\n lineHeight: node.lineHeight,\n style,\n lineStyles,\n });\n}\n","import { onBeforeUnmount, watch } from 'vue';\nimport type { CachedShape } from '../types';\nimport { walkDom } from '../utils/walkDom';\n\nexport interface ShapeProbeOptions {\n maxDepth: number;\n /** Forwarded to `walkDom`. Default 500. */\n maxNodes?: number;\n /** Forwarded to `walkDom`. Default 4. */\n minSize?: number;\n /**\n * Debounce window for `ResizeObserver`-triggered re-captures, in ms.\n * Default 150. Prevents a re-walk every animation frame while the user is\n * actively dragging the viewport edge. The first capture (initial mount) is\n * always immediate via `requestAnimationFrame`.\n */\n resizeDebounceMs?: number;\n onCapture: (shape: CachedShape) => void;\n}\n\nconst DEFAULT_RESIZE_DEBOUNCE_MS = 150;\n\n/**\n * Observe `getTarget()` and capture its rendered shape whenever the element\n * appears or resizes.\n *\n * Performance:\n * - Initial capture runs via `requestAnimationFrame` so it sneaks into the\n * first idle window after mount — no synchronous layout from inside the\n * render queue.\n * - Subsequent `ResizeObserver` callbacks are debounced (default 150 ms) so a\n * drag-resize doesn't trigger a fresh DOM walk per frame.\n * - `walkDom` itself enforces `maxNodes` so even a worst-case capture (10k\n * descendants) returns in bounded time.\n */\nexport function useShapeProbe(getTarget: () => HTMLElement | null, options: ShapeProbeOptions) {\n let observer: ResizeObserver | undefined;\n let frame: number | undefined;\n let timer: ReturnType<typeof setTimeout> | undefined;\n let hasCaptured = false;\n\n const debounceMs = options.resizeDebounceMs ?? DEFAULT_RESIZE_DEBOUNCE_MS;\n\n function cleanup() {\n if (observer) {\n observer.disconnect();\n observer = undefined;\n }\n if (frame !== undefined) {\n cancelAnimationFrame(frame);\n frame = undefined;\n }\n if (timer !== undefined) {\n clearTimeout(timer);\n timer = undefined;\n }\n }\n\n function capture(el: HTMLElement) {\n const result = walkDom(el, {\n maxDepth: options.maxDepth,\n maxNodes: options.maxNodes,\n minSize: options.minSize,\n });\n if (result.width > 0 && result.height > 0 && result.nodes.length > 0) {\n hasCaptured = true;\n options.onCapture(result);\n }\n }\n\n function scheduleImmediate(el: HTMLElement) {\n if (frame !== undefined) cancelAnimationFrame(frame);\n frame = requestAnimationFrame(() => {\n frame = undefined;\n capture(el);\n });\n }\n\n function scheduleDebounced(el: HTMLElement) {\n if (timer !== undefined) clearTimeout(timer);\n timer = setTimeout(() => {\n timer = undefined;\n capture(el);\n }, debounceMs);\n }\n\n watch(\n getTarget,\n (el) => {\n cleanup();\n hasCaptured = false;\n if (!el || typeof window === 'undefined') return;\n scheduleImmediate(el);\n if (typeof ResizeObserver !== 'undefined') {\n observer = new ResizeObserver(() => {\n /* ResizeObserver fires once on observe() — let the rAF capture above\n * handle the initial measurement, then debounce everything that\n * follows so a drag-resize doesn't trigger a re-walk per frame. */\n if (hasCaptured) scheduleDebounced(el);\n });\n observer.observe(el);\n }\n },\n { immediate: true, flush: 'post' }\n );\n\n onBeforeUnmount(cleanup);\n}\n","import type { CSSProperties } from 'vue';\nimport type { CachedShape, ShapeNode } from '../types';\n\nconst memory = new Map<string, CachedShape>();\nconst STORAGE_PREFIX = 'a-skeleton:';\n\n/**\n * Schema version for persisted entries. Bump whenever the `ShapeNode` /\n * `CachedShape` field set changes so stale localStorage payloads from older\n * releases get dropped on read instead of rehydrating into a wrong layout.\n */\nconst SCHEMA_VERSION = 1;\n\ninterface PersistedShape {\n v: number;\n width: number;\n height: number;\n nodes: Partial<ShapeNode>[];\n truncated?: boolean;\n}\n\n/**\n * Lookup a captured shape by key. Reads in-memory first, then `localStorage` if\n * `persist` is enabled. SSR-safe — bypasses `window` access on the server.\n * Rehydrates pre-computed styles for shapes deserialized from older sessions\n * (Object.freeze + style/lineStyles don't survive `JSON.stringify` round-trip).\n * Drops the entry if it was written by a different schema version.\n */\nexport function getCached(key: string, persist: boolean): CachedShape | undefined {\n const hit = memory.get(key);\n if (hit) return hit;\n if (!persist || typeof window === 'undefined') return undefined;\n try {\n const storageKey = STORAGE_PREFIX + key;\n const raw = window.localStorage.getItem(storageKey);\n if (!raw) return undefined;\n const parsed = JSON.parse(raw) as Partial<PersistedShape>;\n if (parsed.v !== SCHEMA_VERSION) {\n /* Stale payload from a previous release — purge so the next capture\n * writes a fresh entry instead of rehydrating into a wrong layout. */\n window.localStorage.removeItem(storageKey);\n return undefined;\n }\n const rehydrated = rehydrateShape(parsed as PersistedShape);\n memory.set(key, rehydrated);\n return rehydrated;\n } catch {\n return undefined;\n }\n}\n\n/** Store a captured shape. `persist=true` mirrors to `localStorage`. */\nexport function setCached(key: string, value: CachedShape, persist: boolean): void {\n memory.set(key, value);\n if (!persist || typeof window === 'undefined') return;\n try {\n /* Only the geometry survives the round-trip; styles get rebuilt on read. */\n const lean: PersistedShape = {\n v: SCHEMA_VERSION,\n width: value.width,\n height: value.height,\n nodes: leanNodes(value.nodes),\n truncated: value.truncated,\n };\n window.localStorage.setItem(STORAGE_PREFIX + key, JSON.stringify(lean));\n } catch {\n /* quota exceeded / disabled storage — silently degrade to in-memory only. */\n }\n}\n\n/** Drop a single entry (or all entries when no key). Exposed for tests + manual invalidation. */\nexport function clearCached(key?: string): void {\n if (!key) {\n memory.clear();\n if (typeof window === 'undefined') return;\n try {\n for (const k of Object.keys(window.localStorage)) {\n if (k.startsWith(STORAGE_PREFIX)) window.localStorage.removeItem(k);\n }\n } catch {\n /* ignore */\n }\n return;\n }\n memory.delete(key);\n if (typeof window === 'undefined') return;\n try {\n window.localStorage.removeItem(STORAGE_PREFIX + key);\n } catch {\n /* ignore */\n }\n}\n\n/**\n * Rebuild `style` + `lineStyles` for nodes that lost them via serialization.\n * Walks the array in-place where possible and freezes the result so the render\n * path stays allocation-free.\n */\nfunction rehydrateShape(shape: PersistedShape): CachedShape {\n const nodes = shape.nodes.map((n) => freezeNodeStyles(n as ShapeNode));\n return Object.freeze({\n nodes: Object.freeze(nodes),\n width: shape.width,\n height: shape.height,\n truncated: shape.truncated,\n }) as CachedShape;\n}\n\nfunction leanNodes(nodes: ReadonlyArray<ShapeNode>): Partial<ShapeNode>[] {\n /* Strip the (re-derivable) style fields before persisting so the localStorage\n * payload stays small — a 500-node shape would otherwise serialize ~500 frozen\n * style objects redundantly. */\n return nodes.map((n) => ({\n type: n.type,\n x: n.x,\n y: n.y,\n w: n.w,\n h: n.h,\n radius: n.radius,\n lines: n.lines,\n lineHeight: n.lineHeight,\n }));\n}\n\nfunction freezeNodeStyles(node: ShapeNode): ShapeNode {\n const style: CSSProperties = Object.freeze({\n left: `${node.x}px`,\n top: `${node.y}px`,\n width: `${node.w}px`,\n height: `${node.h}px`,\n borderRadius: `${node.radius}px`,\n });\n\n let lineStyles: ReadonlyArray<Readonly<CSSProperties>> | undefined;\n if (node.type === 'text' && node.lines && node.lines > 1) {\n const lh = node.lineHeight ?? Math.round(node.h / node.lines);\n const barHeight = Math.max(8, Math.round(lh * 0.7));\n const widthFull = `${node.w}px`;\n const widthLast = `${Math.max(40, Math.round(node.w * 0.7))}px`;\n const heightStr = `${barHeight}px`;\n const radiusStr = `${node.radius}px`;\n const arr: Readonly<CSSProperties>[] = [];\n for (let i = 1; i <= node.lines; i++) {\n const isLast = i === node.lines;\n arr.push(\n Object.freeze<CSSProperties>({\n left: `${node.x}px`,\n top: `${node.y + (i - 1) * lh}px`,\n width: isLast ? widthLast : widthFull,\n height: heightStr,\n borderRadius: radiusStr,\n })\n );\n }\n lineStyles = Object.freeze(arr);\n }\n\n return Object.freeze({\n type: node.type,\n x: node.x,\n y: node.y,\n w: node.w,\n h: node.h,\n radius: node.radius,\n lines: node.lines,\n lineHeight: node.lineHeight,\n style,\n lineStyles,\n });\n}\n","import { Comment, Fragment, Text, type VNode } from 'vue';\n\n/**\n * Derive a default cache key from a slot's vnode tree. Returns the first\n * non-comment child's component name (or HTML tag). When the slot only contains\n * text / comments / unknown content, returns `'anonymous'` so the caller can\n * still cache, but with no useful identity — encourage an explicit `cacheKey`.\n */\nexport function fingerprintSlot(vnodes: VNode[] | undefined): string {\n if (!vnodes) return 'anonymous';\n for (const vnode of vnodes) {\n const tag = describeVNode(vnode);\n if (tag) return tag;\n }\n return 'anonymous';\n}\n\nfunction describeVNode(vnode: VNode): string | undefined {\n const t = vnode.type;\n if (t === Comment || t === Text) return undefined;\n if (t === Fragment) {\n const children = vnode.children;\n if (Array.isArray(children)) {\n for (const child of children) {\n if (child && typeof child === 'object' && 'type' in (child as object)) {\n const found = describeVNode(child as VNode);\n if (found) return found;\n }\n }\n }\n return undefined;\n }\n if (typeof t === 'string') return t;\n if (typeof t === 'object' && t !== null) {\n const named =\n (t as { name?: string }).name ??\n (t as { __name?: string }).__name ??\n (t as { displayName?: string }).displayName;\n if (named) return named;\n }\n return undefined;\n}\n","import {\n Comment,\n Fragment,\n Text,\n h,\n type VNode,\n type VNodeArrayChildren,\n type VNodeChild,\n} from 'vue';\n\n/**\n * Atomic HTML tags — rendered as a single skeleton block. Their own class/style\n * is preserved so Tailwind utilities (`size-16`, `rounded-full`, …) carry the\n * dimensions across without us needing to measure.\n */\nconst ATOMIC_TAGS = new Set([\n 'img',\n 'svg',\n 'canvas',\n 'video',\n 'input',\n 'textarea',\n 'select',\n 'button',\n 'progress',\n 'meter',\n 'hr',\n]);\n\n/** Single-line text containers — produce one bar. */\nconst HEADING_TAGS = new Set(['h1', 'h2', 'h3', 'h4', 'h5', 'h6']);\n\n/** Multi-line text containers — produce N bars with a shortened last line. */\nconst PARAGRAPH_TAGS = new Set(['p', 'blockquote']);\n\n/** Inline text — single bar, but inherits parent font sizing. */\nconst INLINE_TEXT_TAGS = new Set([\n 'span',\n 'a',\n 'small',\n 'strong',\n 'em',\n 'code',\n 'time',\n 'label',\n 'b',\n 'i',\n 'mark',\n]);\n\nexport interface BuildOptions {\n animationClass: string | null;\n /** Max recursion depth — guards runaway templates. Default 8. */\n maxDepth?: number;\n /**\n * Hard cap on emitted skeleton nodes. Default 300. A 200-row table doesn't\n * need 200 distinct skeleton rows on first paint; cap and stop early.\n */\n maxNodes?: number;\n}\n\nconst DEFAULT_MAX_DEPTH = 8;\nconst DEFAULT_MAX_NODES = 300;\n\ninterface WalkState {\n emitted: number;\n cap: number;\n}\n\n/**\n * Walk a slot's vnode tree and produce a skeleton that mirrors its rendered\n * structure: same wrapping tags, same `class` strings (so flex/grid/spacing/\n * sizing utilities still apply), but text/atomic leaves replaced with shimmer\n * blocks. The result renders correctly on the FIRST paint without any DOM\n * measurement, as long as the slot's template renders structure even when its\n * data is empty (use `v-if`/`v-else` to swap content, not to gate the wrapper).\n *\n * Performance: `maxNodes` caps the work. When the cap is hit we stop emitting\n * — the caller still gets a valid skeleton, just clipped at the budget. A 1000-\n * row list renders ~300 skeleton rows on first paint and then the measured cache\n * takes over for subsequent loads.\n */\nexport function buildStructuralSkeleton(\n vnodes: VNodeChild | VNodeArrayChildren | undefined | null,\n opts: BuildOptions\n): VNode[] {\n const maxDepth = opts.maxDepth ?? DEFAULT_MAX_DEPTH;\n const state: WalkState = { emitted: 0, cap: opts.maxNodes ?? DEFAULT_MAX_NODES };\n const out: VNode[] = [];\n walk(vnodes, opts, 0, maxDepth, state, out);\n return out;\n}\n\nfunction walk(\n input: VNodeChild | VNodeArrayChildren | undefined | null,\n opts: BuildOptions,\n depth: number,\n max: number,\n state: WalkState,\n out: VNode[]\n): void {\n if (state.emitted >= state.cap) return;\n if (input == null || typeof input === 'boolean') return;\n\n if (Array.isArray(input)) {\n for (let i = 0; i < input.length; i++) {\n if (state.emitted >= state.cap) return;\n walk(input[i] as VNodeChild, opts, depth, max, state, out);\n }\n return;\n }\n\n if (typeof input === 'string' || typeof input === 'number') {\n const str = String(input).trim();\n if (str) push(out, textBar(opts.animationClass), state);\n return;\n }\n\n const v = input as VNode;\n const type = v.type;\n\n if (type === Comment) return;\n\n if (type === Text) {\n const t = typeof v.children === 'string' ? v.children.trim() : '';\n if (t) push(out, textBar(opts.animationClass), state);\n return;\n }\n\n if (type === Fragment) {\n walk(v.children as VNodeArrayChildren, opts, depth, max, state, out);\n return;\n }\n\n if (typeof type === 'string') {\n push(out, transformElement(v, type.toLowerCase(), opts, depth, max, state), state);\n return;\n }\n\n /* Component vnode — we can't introspect its template, so render an opaque\n * skeleton block carrying any utility classes the user attached to it. */\n if (typeof type === 'object' || typeof type === 'function') {\n push(\n out,\n h('div', {\n class: ['a-skel-block', v.props?.class, opts.animationClass],\n style: v.props?.style as Record<string, string>,\n }),\n state\n );\n }\n}\n\nfunction push(out: VNode[], vn: VNode, state: WalkState): void {\n if (state.emitted >= state.cap) return;\n out.push(vn);\n state.emitted++;\n}\n\nfunction transformElement(\n v: VNode,\n tag: string,\n opts: BuildOptions,\n depth: number,\n max: number,\n state: WalkState\n): VNode {\n const cls = v.props?.class;\n const styl = v.props?.style as Record<string, string> | string | undefined;\n\n if (ATOMIC_TAGS.has(tag)) {\n return h('div', { class: ['a-skel-block', cls, opts.animationClass], style: styl });\n }\n\n if (HEADING_TAGS.has(tag)) {\n return h(tag, { class: cls, style: styl }, [textBar(opts.animationClass)]);\n }\n\n if (PARAGRAPH_TAGS.has(tag)) {\n const children = v.children;\n const recursedChildren: VNode[] = [];\n walk(children as VNodeArrayChildren, opts, depth + 1, max, state, recursedChildren);\n if (recursedChildren.length > 0) return h(tag, { class: cls, style: styl }, recursedChildren);\n const lines = estimateLines(children, 3);\n return h(tag, { class: cls, style: styl }, multiLineBars(lines, opts.animationClass));\n }\n\n if (INLINE_TEXT_TAGS.has(tag)) {\n const children = v.children;\n const recursedChildren: VNode[] = [];\n walk(children as VNodeArrayChildren, opts, depth + 1, max, state, recursedChildren);\n if (recursedChildren.length > 0) return h(tag, { class: cls, style: styl }, recursedChildren);\n return h(tag, { class: cls, style: styl }, [textBar(opts.animationClass)]);\n }\n\n /* Generic container — keep its classes (flex/grid/padding/etc.) and recurse. */\n if (depth >= max) {\n return h('div', { class: ['a-skel-block', cls, opts.animationClass], style: styl });\n }\n const recursed: VNode[] = [];\n walk(v.children as VNodeArrayChildren, opts, depth + 1, max, state, recursed);\n if (recursed.length === 0) {\n /* Empty container in the source — render as a single block so the layout\n * still reserves space rather than collapsing to zero height. */\n return h('div', { class: ['a-skel-block', cls, opts.animationClass], style: styl });\n }\n return h(tag, { class: cls, style: styl }, recursed);\n}\n\nfunction estimateLines(children: unknown, max: number): number {\n if (typeof children !== 'string') return 1;\n const len = children.trim().length;\n if (len === 0)\n return 2; /* empty interpolation — assume 2 lines so the bar looks paragraph-shaped */\n if (len < 40) return 1;\n if (len < 100) return 2;\n return Math.min(max, 3);\n}\n\nfunction multiLineBars(lines: number, animationClass: string | null): VNode[] {\n const out: VNode[] = [];\n for (let i = 0; i < lines; i++) {\n out.push(textBar(animationClass, i === lines - 1 && lines > 1 ? 0.65 : 1));\n }\n return out;\n}\n\n/* Style objects for the two common bar shapes are reused across calls so a\n * structural skeleton with 200 text bars doesn't allocate 200 style objects. */\nconst BAR_STYLE_FULL = Object.freeze({\n display: 'inline-block',\n width: '100%',\n height: '0.75em',\n verticalAlign: 'middle',\n borderRadius: '4px',\n});\n\nconst PARTIAL_BAR_CACHE = new Map<number, Readonly<Record<string, string>>>();\n\nfunction partialBarStyle(widthFraction: number): Readonly<Record<string, string>> {\n /* Round to one decimal so 0.65, 0.7, 0.85 each get a single cached style. */\n const key = Math.round(widthFraction * 10) / 10;\n const hit = PARTIAL_BAR_CACHE.get(key);\n if (hit) return hit;\n const made = Object.freeze({\n display: 'inline-block',\n width: `${Math.round(key * 100)}%`,\n height: '0.75em',\n verticalAlign: 'middle',\n borderRadius: '4px',\n });\n PARTIAL_BAR_CACHE.set(key, made);\n return made;\n}\n\nfunction textBar(animationClass: string | null, widthFraction = 1): VNode {\n return h('span', {\n class: ['a-skel-block', 'a-skel-block--text', animationClass],\n style: widthFraction === 1 ? BAR_STYLE_FULL : partialBarStyle(widthFraction),\n });\n}\n","import { defineComponent, type PropType, type VNode, type VNodeArrayChildren } from 'vue';\nimport { buildStructuralSkeleton } from '../utils/buildStructuralSkeleton';\n\n/**\n * Renders a structural skeleton derived from a slot's vnode tree. Pure render\n * function — no template, no scoped styles — so the parent's class strings\n * pass through unchanged and Tailwind utilities continue to drive layout.\n *\n * `maxNodes` is forwarded to the walker; cap defaults to 300 (see\n * `buildStructuralSkeleton`). Beyond that the walk stops emitting and the cap\n * propagates back as a clipped tree, keeping first-paint bounded.\n */\nexport const StructuralSkeleton = defineComponent({\n name: 'StructuralSkeleton',\n props: {\n vnodes: {\n type: Array as unknown as PropType<VNodeArrayChildren>,\n required: true,\n },\n animation: {\n type: String as PropType<string | null>,\n default: null,\n },\n maxDepth: {\n type: Number,\n default: 8,\n },\n maxNodes: {\n type: Number,\n default: 300,\n },\n },\n setup(props) {\n return (): VNode[] =>\n buildStructuralSkeleton(props.vnodes, {\n animationClass: props.animation,\n maxDepth: props.maxDepth,\n maxNodes: props.maxNodes,\n });\n },\n});\n","<script setup lang=\"ts\">\nimport { computed, ref, shallowRef, useId, useSlots, watch, type CSSProperties } from 'vue';\nimport { cn } from '@alikhalilll/a-ui-base';\nimport type { ASkeletonProps, ASkeletonSlots, CachedShape, ShapeNodeType } from '../types';\nimport { useShapeProbe } from '../composables/useShapeProbe';\nimport { getCached, setCached } from '../composables/useSkeletonCache';\nimport { fingerprintSlot } from '../utils/fingerprint';\nimport { StructuralSkeleton } from './StructuralSkeleton';\n\nconst props = withDefaults(defineProps<ASkeletonProps>(), {\n maxDepth: 6,\n maxNodes: 500,\n minNodeSize: 4,\n persist: false,\n animation: 'shimmer',\n fallback: 'shimmer',\n});\ndefineSlots<ASkeletonSlots>();\n\nconst slots = useSlots();\n\n/* Per-instance suffix from Vue's useId() — deterministic across SSR/hydration\n * and stable across re-renders, but distinct per <ASkeleton> instance. Two\n * <ASkeleton><UserCard/></ASkeleton> on the same page therefore never collide\n * on the auto-generated key. Pass an explicit `cacheKey` to share a shape\n * across instances on purpose. */\nconst instanceId = useId();\n\nconst resolvedKey = computed(\n () => props.cacheKey ?? `${fingerprintSlot(slots.default?.())}:${instanceId}`\n);\n\nconst warnedKeys = new Set<string>();\n\nconst cached = shallowRef<CachedShape | undefined>(getCached(resolvedKey.value, props.persist));\n\nwatch(resolvedKey, (key) => {\n cached.value = getCached(key, props.persist);\n});\n\nconst wrapperRef = ref<HTMLElement | null>(null);\n\n/* Probe runs whenever the real content is mounted (loading=false). The getter\n * returns null during loading so the watch tears down its ResizeObserver. */\nuseShapeProbe(() => (props.loading ? null : wrapperRef.value), {\n maxDepth: props.maxDepth,\n maxNodes: props.maxNodes,\n minSize: props.minNodeSize,\n onCapture: (shape) => {\n setCached(resolvedKey.value, shape, props.persist);\n cached.value = shape;\n if (shape.truncated && !warnedKeys.has(resolvedKey.value)) {\n warnedKeys.add(resolvedKey.value);\n console.warn(\n `[ASkeleton] Capture truncated at maxNodes=${props.maxNodes} for cacheKey=\"${resolvedKey.value}\". ` +\n `The replayed skeleton will be missing nodes. Raise \\`max-nodes\\` or mark dense subtrees with ` +\n `\\`data-skeleton-stop\\` to collapse them into a single block.`\n );\n }\n },\n});\n\nconst animationClass = computed(() =>\n props.animation === 'none' ? null : `a-skel-block--anim-${props.animation}`\n);\n\nconst layerStyle = computed<CSSProperties>(() =>\n cached.value ? { width: `${cached.value.width}px`, height: `${cached.value.height}px` } : {}\n);\n\n/* Pre-join the per-type class strings once per animation value so the render\n * loop doesn't allocate a new `[a, b, c]` array per node per frame — meaningful\n * when a cache holds hundreds of nodes. */\nconst blockClassByType = computed<Readonly<Record<ShapeNodeType, string>>>(() => {\n const anim = animationClass.value;\n const suffix = anim ? ` ${anim}` : '';\n return Object.freeze({\n block: `a-skel-block a-skel-block--block${suffix}`,\n text: `a-skel-block a-skel-block--text${suffix}`,\n image: `a-skel-block a-skel-block--image${suffix}`,\n circle: `a-skel-block a-skel-block--circle${suffix}`,\n });\n});\n\n/* Cache-miss fallback path: walk the slot's vnodes synchronously so the FIRST\n * paint already shows a skeleton that mirrors the component's HTML structure\n * (same tags, classes, hierarchy → same flex/grid/spacing/sizing utilities\n * still apply). If the slot is empty / only renders comments (e.g. the user\n * gates the whole template on `v-if=\"data\"`), we get an empty array back and\n * fall through to the generic shimmer block. */\nconst structuralVNodes = computed(() => (props.loading ? (slots.default?.() ?? []) : []));\nconst hasStructure = computed(() => structuralVNodes.value.length > 0);\n</script>\n\n<template>\n <div\n ref=\"wrapperRef\"\n :class=\"cn('a-skeleton', props.class)\"\n :data-loading=\"props.loading ? '' : undefined\"\n >\n <template v-if=\"props.loading\">\n <!-- Cache hit: pixel-aligned positioned blocks from a previous measurement.\n Styles are pre-computed during capture so the loop below never calls\n a function or allocates a style object per node. -->\n <div\n v-if=\"cached\"\n class=\"a-skeleton__layer\"\n :style=\"layerStyle\"\n role=\"status\"\n aria-live=\"polite\"\n aria-busy=\"true\"\n >\n <template v-for=\"(node, idx) in cached.nodes\" :key=\"idx\">\n <template v-if=\"node.lineStyles\">\n <div\n v-for=\"(lineStyle, i) in node.lineStyles\"\n :key=\"`${idx}-${i}`\"\n :class=\"blockClassByType.text\"\n :style=\"lineStyle\"\n />\n </template>\n <div v-else :class=\"blockClassByType[node.type]\" :style=\"node.style\" />\n </template>\n </div>\n\n <!-- Cache miss + slot has structure: render a structural skeleton derived\n from the slot's vnode tree. First paint already looks right. -->\n <div\n v-else-if=\"hasStructure\"\n class=\"a-skeleton__structural\"\n role=\"status\"\n aria-live=\"polite\"\n aria-busy=\"true\"\n >\n <StructuralSkeleton\n :vnodes=\"structuralVNodes\"\n :animation=\"animationClass\"\n :max-depth=\"maxDepth\"\n :max-nodes=\"maxNodes\"\n />\n </div>\n\n <!-- Cache miss + nothing to walk: generic shimmer. -->\n <div v-else class=\"a-skeleton__fallback\" role=\"status\" aria-busy=\"true\">\n <slot name=\"fallback\">\n <div\n class=\"a-skel-block a-skel-block--block a-skel-fallback-default\"\n :class=\"animationClass\"\n />\n </slot>\n </div>\n </template>\n\n <slot v-else />\n </div>\n</template>\n\n<style scoped>\n.a-skeleton {\n display: block;\n position: relative;\n}\n\n/* `.a-skeleton__layer` + `.a-skeleton__layer > .a-skel-block` layout/containment\n * live in `styles.src.css` so they're shared with the public `<ASkeletonLayer>`\n * component. */\n\n.a-skeleton__structural :deep(*) {\n /* Disable text caret/selection on the structural copy so it doesn't look\n * interactive. Layout (flex/grid/spacing/sizing) flows through unchanged. */\n user-select: none;\n pointer-events: none;\n}\n\n.a-skeleton__structural :deep(button),\n.a-skeleton__structural :deep(input),\n.a-skeleton__structural :deep(a) {\n cursor: default;\n}\n\n.a-skeleton__fallback :deep(.a-skel-fallback-default) {\n width: 100%;\n height: 4rem;\n border-radius: 0.5rem;\n}\n</style>\n","<script setup lang=\"ts\">\nimport { computed, type CSSProperties } from 'vue';\nimport { cn } from '@alikhalilll/a-ui-base';\nimport type { ASkeletonLayerProps, ShapeNodeType } from '../types';\n\nconst props = withDefaults(defineProps<ASkeletonLayerProps>(), {\n animation: 'shimmer',\n});\n\nconst animationClass = computed(() =>\n props.animation === 'none' ? null : `a-skel-block--anim-${props.animation}`\n);\n\nconst layerStyle = computed<CSSProperties>(() =>\n props.shape ? { width: `${props.shape.width}px`, height: `${props.shape.height}px` } : {}\n);\n\n/* Pre-joined per-type class strings — see ASkeleton.vue for the rationale. */\nconst blockClassByType = computed<Readonly<Record<ShapeNodeType, string>>>(() => {\n const anim = animationClass.value;\n const suffix = anim ? ` ${anim}` : '';\n return Object.freeze({\n block: `a-skel-block a-skel-block--block${suffix}`,\n text: `a-skel-block a-skel-block--text${suffix}`,\n image: `a-skel-block a-skel-block--image${suffix}`,\n circle: `a-skel-block a-skel-block--circle${suffix}`,\n });\n});\n</script>\n\n<template>\n <div\n v-if=\"shape\"\n :class=\"cn('a-skeleton__layer', props.class)\"\n :style=\"layerStyle\"\n role=\"status\"\n aria-live=\"polite\"\n aria-busy=\"true\"\n >\n <template v-for=\"(node, idx) in shape.nodes\" :key=\"idx\">\n <template v-if=\"node.lineStyles\">\n <div\n v-for=\"(lineStyle, i) in node.lineStyles\"\n :key=\"`${idx}-${i}`\"\n :class=\"blockClassByType.text\"\n :style=\"lineStyle\"\n />\n </template>\n <div v-else :class=\"blockClassByType[node.type]\" :style=\"node.style\" />\n </template>\n </div>\n</template>\n","<script setup lang=\"ts\">\nimport { computed, type CSSProperties } from 'vue';\nimport { cn } from '@alikhalilll/a-ui-base';\nimport type { ASkeletonBlockProps } from '../types';\n\nconst props = withDefaults(defineProps<ASkeletonBlockProps>(), {\n type: 'block',\n animation: 'shimmer',\n lines: 1,\n});\n\nconst animationClass = computed(() =>\n props.animation === 'none' ? null : `a-skel-block--anim-${props.animation}`\n);\n\nconst blockClass = computed(() => [\n 'a-skel-block',\n `a-skel-block--${props.type}`,\n animationClass.value,\n]);\n\nfunction toLength(v: number | string | undefined): string | undefined {\n if (v === undefined) return undefined;\n return typeof v === 'number' ? `${v}px` : v;\n}\n\nconst radiusValue = computed(() =>\n props.type === 'circle' && props.radius === undefined ? '50%' : toLength(props.radius)\n);\n\nconst blockStyle = computed<CSSProperties>(() => ({\n width: toLength(props.w),\n height: toLength(props.h),\n borderRadius: radiusValue.value,\n}));\n\nconst isMultiLineText = computed(() => props.type === 'text' && props.lines > 1);\n</script>\n\n<template>\n <div\n v-if=\"isMultiLineText\"\n :class=\"cn('a-skel-block-stack', props.class)\"\n role=\"status\"\n aria-busy=\"true\"\n >\n <div\n v-for=\"i in props.lines\"\n :key=\"i\"\n :class=\"blockClass\"\n :style=\"{\n height: blockStyle.height ?? '0.75em',\n width: i === props.lines ? '70%' : '100%',\n borderRadius: blockStyle.borderRadius ?? '4px',\n }\"\n />\n </div>\n <div\n v-else\n :class=\"cn(blockClass, props.class)\"\n :style=\"blockStyle\"\n role=\"status\"\n aria-busy=\"true\"\n />\n</template>\n\n<style scoped>\n.a-skel-block-stack {\n display: flex;\n flex-direction: column;\n gap: 0.35rem;\n width: 100%;\n}\n</style>\n","import { shallowRef, type Ref } from 'vue';\nimport type { CachedShape } from '../types';\nimport { useShapeProbe } from './useShapeProbe';\nimport { clearCached, getCached, setCached } from './useSkeletonCache';\nimport { walkDom } from '../utils/walkDom';\n\nexport interface UseSkeletonOptions {\n /**\n * Identifier for the shape cache. Pass the same key wherever the same visual\n * structure appears so the captured shape replays everywhere.\n */\n cacheKey: string;\n /**\n * Getter for the element to measure. When it returns `null` (e.g. during the\n * loading state), no measurement happens. The probe re-arms automatically\n * once the getter returns an element again.\n *\n * Typical pattern: return `null` while loading so the real content is the\n * only thing ever measured, then the cache feeds the skeleton on the next\n * load.\n */\n target?: () => HTMLElement | null;\n /** Persist to `localStorage` so first-paint after reload skips the cold start. Default false. */\n persist?: boolean;\n /** Forwarded to `walkDom`. Default 6. */\n maxDepth?: number;\n /** Forwarded to `walkDom`. Default 500. */\n maxNodes?: number;\n /** Forwarded to `walkDom`. Default 4. */\n minSize?: number;\n /** Forwarded to `useShapeProbe`. Default 150 ms. */\n resizeDebounceMs?: number;\n}\n\nexport interface UseSkeletonReturn {\n /** Reactive captured shape — `undefined` on cache miss. Replace your skeleton render path. */\n shape: Readonly<Ref<CachedShape | undefined>>;\n /**\n * Synchronously measure the current target and write to cache. Returns the\n * captured shape, or `undefined` if the target wasn't available / nothing\n * worth measuring was rendered. Use when you want to force a capture outside\n * the automatic `ResizeObserver` flow (e.g. after an animation settles).\n */\n captureNow: () => CachedShape | undefined;\n /** Drop the cache entry for this `cacheKey`. The reactive `shape` flips to `undefined`. */\n clear: () => void;\n}\n\n/**\n * High-level building block for custom skeleton UIs. Wires up the probe + cache\n * + reactivity so the consumer just renders something using the reactive shape:\n *\n * ```ts\n * const containerRef = ref<HTMLElement | null>(null);\n * const { shape } = useSkeleton({\n * cacheKey: 'user-card',\n * target: () => (loading.value ? null : containerRef.value),\n * });\n * ```\n *\n * ```vue\n * <div ref=\"containerRef\">\n * <ASkeletonLayer v-if=\"loading && shape\" :shape=\"shape\" />\n * <UserCard v-else :data=\"user\" />\n * </div>\n * ```\n *\n * For more control, drop down to `useShapeProbe` + `getCached`/`setCached` and\n * compose your own.\n */\nexport function useSkeleton(options: UseSkeletonOptions): UseSkeletonReturn {\n const persist = options.persist ?? false;\n const maxDepth = options.maxDepth ?? 6;\n\n const shape = shallowRef<CachedShape | undefined>(getCached(options.cacheKey, persist));\n\n if (options.target) {\n const getTarget = options.target;\n useShapeProbe(getTarget, {\n maxDepth,\n maxNodes: options.maxNodes,\n minSize: options.minSize,\n resizeDebounceMs: options.resizeDebounceMs,\n onCapture: (captured) => {\n setCached(options.cacheKey, captured, persist);\n shape.value = captured;\n },\n });\n }\n\n function captureNow(): CachedShape | undefined {\n const el = options.target?.();\n if (!el || typeof window === 'undefined') return undefined;\n const captured = walkDom(el, {\n maxDepth,\n maxNodes: options.maxNodes,\n minSize: options.minSize,\n });\n if (captured.width <= 0 || captured.height <= 0 || captured.nodes.length === 0)\n return undefined;\n setCached(options.cacheKey, captured, persist);\n shape.value = captured;\n return captured;\n }\n\n function clear(): void {\n clearCached(options.cacheKey);\n shape.value = undefined;\n }\n\n return { shape, captureNow, clear };\n}\n"],"x_google_ignoreList":[0,1],"mappings":"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"}