registerLegacyUtilities() — tailwindcss Function Reference
Architecture documentation for the registerLegacyUtilities() function in legacy-utilities.ts from the tailwindcss codebase.
Entity Profile
Dependency Diagram
graph TD 16ea83b7_6a24_51d7_fe79_5abfdb79d93e["registerLegacyUtilities()"] 9e2f12c0_83ef_256b_739b_9ec6ebc69b08["applyCompatibilityHooks()"] 9e2f12c0_83ef_256b_739b_9ec6ebc69b08 -->|calls| 16ea83b7_6a24_51d7_fe79_5abfdb79d93e 85b46de2_edfa_9371_e2c6_e60f3f5346a2["decl()"] 16ea83b7_6a24_51d7_fe79_5abfdb79d93e -->|calls| 85b46de2_edfa_9371_e2c6_e60f3f5346a2 559275a8_927e_3002_3298_4cbb685cc92a["isPositiveInteger()"] 16ea83b7_6a24_51d7_fe79_5abfdb79d93e -->|calls| 559275a8_927e_3002_3298_4cbb685cc92a 2a20ea29_c850_cd61_5600_aeebbe3dda66["segment()"] 16ea83b7_6a24_51d7_fe79_5abfdb79d93e -->|calls| 2a20ea29_c850_cd61_5600_aeebbe3dda66 c12acffb_80f9_0b95_b1a6_e663fbaca197["isValidSpacingMultiplier()"] 16ea83b7_6a24_51d7_fe79_5abfdb79d93e -->|calls| c12acffb_80f9_0b95_b1a6_e663fbaca197 style 16ea83b7_6a24_51d7_fe79_5abfdb79d93e fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
packages/tailwindcss/src/compat/legacy-utilities.ts lines 6–179
export function registerLegacyUtilities(designSystem: DesignSystem) {
for (let [value, direction] of [
['t', 'top'],
['tr', 'top right'],
['r', 'right'],
['br', 'bottom right'],
['b', 'bottom'],
['bl', 'bottom left'],
['l', 'left'],
['tl', 'top left'],
]) {
designSystem.utilities.suggest(`bg-gradient-to-${value}`, () => [])
designSystem.utilities.static(`bg-gradient-to-${value}`, () => [
decl('--tw-gradient-position', `to ${direction} in oklab`),
decl('background-image', `linear-gradient(var(--tw-gradient-stops))`),
])
}
// Legacy `background-position` utilities for compatibility with v4.0 and earlier
designSystem.utilities.suggest('bg-left-top', () => [])
designSystem.utilities.static('bg-left-top', () => [decl('background-position', 'left top')])
designSystem.utilities.suggest('bg-right-top', () => [])
designSystem.utilities.static('bg-right-top', () => [decl('background-position', 'right top')])
designSystem.utilities.suggest('bg-left-bottom', () => [])
designSystem.utilities.static('bg-left-bottom', () => [
decl('background-position', 'left bottom'),
])
designSystem.utilities.suggest('bg-right-bottom', () => [])
designSystem.utilities.static('bg-right-bottom', () => [
decl('background-position', 'right bottom'),
])
// Legacy `object-position` utilities for compatibility with v4.0 and earlier
designSystem.utilities.suggest('object-left-top', () => [])
designSystem.utilities.static('object-left-top', () => [decl('object-position', 'left top')])
designSystem.utilities.suggest('object-right-top', () => [])
designSystem.utilities.static('object-right-top', () => [decl('object-position', 'right top')])
designSystem.utilities.suggest('object-left-bottom', () => [])
designSystem.utilities.static('object-left-bottom', () => [
decl('object-position', 'left bottom'),
])
designSystem.utilities.suggest('object-right-bottom', () => [])
designSystem.utilities.static('object-right-bottom', () => [
decl('object-position', 'right bottom'),
])
designSystem.utilities.suggest('max-w-screen', () => [])
designSystem.utilities.functional('max-w-screen', (candidate) => {
if (!candidate.value) return
if (candidate.value.kind === 'arbitrary') return
let value = designSystem.theme.resolve(candidate.value.value, ['--breakpoint'])
if (!value) return
return [decl('max-width', value)]
})
designSystem.utilities.suggest('overflow-ellipsis', () => [])
designSystem.utilities.static(`overflow-ellipsis`, () => [decl('text-overflow', `ellipsis`)])
designSystem.utilities.suggest('decoration-slice', () => [])
designSystem.utilities.static(`decoration-slice`, () => [
decl('-webkit-box-decoration-break', `slice`),
decl('box-decoration-break', `slice`),
])
designSystem.utilities.suggest('decoration-clone', () => [])
designSystem.utilities.static(`decoration-clone`, () => [
decl('-webkit-box-decoration-break', `clone`),
decl('box-decoration-break', `clone`),
])
designSystem.utilities.suggest('flex-shrink', () => [])
designSystem.utilities.functional('flex-shrink', (candidate) => {
if (candidate.modifier) return
if (!candidate.value) {
return [decl('flex-shrink', '1')]
}
if (candidate.value.kind === 'arbitrary') {
return [decl('flex-shrink', candidate.value.value)]
}
if (isPositiveInteger(candidate.value.value)) {
return [decl('flex-shrink', candidate.value.value)]
}
})
designSystem.utilities.suggest('flex-grow', () => [])
designSystem.utilities.functional('flex-grow', (candidate) => {
if (candidate.modifier) return
if (!candidate.value) {
return [decl('flex-grow', '1')]
}
if (candidate.value.kind === 'arbitrary') {
return [decl('flex-grow', candidate.value.value)]
}
if (isPositiveInteger(candidate.value.value)) {
return [decl('flex-grow', candidate.value.value)]
}
})
designSystem.utilities.suggest('order-none', () => [])
designSystem.utilities.static('order-none', () => [decl('order', '0')])
designSystem.utilities.suggest('break-words', () => [])
designSystem.utilities.static('break-words', () => [decl('overflow-wrap', 'break-word')])
// Legacy `start` and `end` inset utilities, replaced by `inset-s` and `inset-e`
for (let [name, property] of [
['start', 'inset-inline-start'],
['end', 'inset-inline-end'],
] as const) {
designSystem.utilities.static(`${name}-auto`, () => [decl(property, 'auto')])
designSystem.utilities.static(`${name}-full`, () => [decl(property, '100%')])
designSystem.utilities.static(`-${name}-full`, () => [decl(property, '-100%')])
designSystem.utilities.static(`${name}-px`, () => [decl(property, '1px')])
designSystem.utilities.static(`-${name}-px`, () => [decl(property, '-1px')])
function handleInset({ negative }: { negative: boolean }) {
return (candidate: Extract<import('../candidate').Candidate, { kind: 'functional' }>) => {
if (!candidate.value) {
if (candidate.modifier) return
let value = designSystem.theme.resolve(null, ['--inset', '--spacing'])
if (value === null) return
return [decl(property, negative ? `calc(${value} * -1)` : value)]
}
if (candidate.value.kind === 'arbitrary') {
if (candidate.modifier) return
let value = candidate.value.value
return [decl(property, negative ? `calc(${value} * -1)` : value)]
}
let value = designSystem.theme.resolve(candidate.value.fraction ?? candidate.value.value, [
'--inset',
'--spacing',
])
// Handle fractions like `start-1/2`
if (value === null && candidate.value.fraction) {
let [lhs, rhs] = segment(candidate.value.fraction, '/')
if (!isPositiveInteger(lhs) || !isPositiveInteger(rhs)) return
value = `calc(${candidate.value.fraction} * 100%)`
}
// Handle bare spacing multiplier values like `start-4`
if (value === null && negative) {
let multiplier = designSystem.theme.resolve(null, ['--spacing'])
if (multiplier && isValidSpacingMultiplier(candidate.value.value)) {
value = `calc(${multiplier} * -${candidate.value.value})`
if (value !== null) return [decl(property, value)]
}
}
if (value === null) {
let multiplier = designSystem.theme.resolve(null, ['--spacing'])
if (multiplier && isValidSpacingMultiplier(candidate.value.value)) {
value = `calc(${multiplier} * ${candidate.value.value})`
}
}
if (value === null) return
return [decl(property, negative ? `calc(${value} * -1)` : value)]
}
}
designSystem.utilities.functional(`-${name}`, handleInset({ negative: true }))
designSystem.utilities.functional(name, handleInset({ negative: false }))
}
}
Domain
Subdomains
Called By
Source
Frequently Asked Questions
What does registerLegacyUtilities() do?
registerLegacyUtilities() is a function in the tailwindcss codebase.
What does registerLegacyUtilities() call?
registerLegacyUtilities() calls 4 function(s): decl, isPositiveInteger, isValidSpacingMultiplier, segment.
What calls registerLegacyUtilities()?
registerLegacyUtilities() is called by 1 function(s): applyCompatibilityHooks.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free