mirror of
https://github.com/tailwindlabs/tailwindcss.git
synced 2025-12-08 21:36:08 +00:00
* Add ring utilities * Remove redundant shadows, add 5% and 95% to opacity scale * Undo changes to build file * Update boxShadow.test.js
122 lines
2.0 KiB
JavaScript
122 lines
2.0 KiB
JavaScript
export const corePluginList = [
|
|
'preflight',
|
|
'container',
|
|
'space',
|
|
'divideWidth',
|
|
'divideColor',
|
|
'divideStyle',
|
|
'divideOpacity',
|
|
'accessibility',
|
|
'appearance',
|
|
'backgroundAttachment',
|
|
'backgroundClip',
|
|
'backgroundColor',
|
|
'backgroundImage',
|
|
'gradientColorStops',
|
|
'backgroundOpacity',
|
|
'backgroundPosition',
|
|
'backgroundRepeat',
|
|
'backgroundSize',
|
|
'borderCollapse',
|
|
'borderColor',
|
|
'borderOpacity',
|
|
'borderRadius',
|
|
'borderStyle',
|
|
'borderWidth',
|
|
'boxSizing',
|
|
'cursor',
|
|
'display',
|
|
'flexDirection',
|
|
'flexWrap',
|
|
'placeItems',
|
|
'placeContent',
|
|
'placeSelf',
|
|
'alignItems',
|
|
'alignContent',
|
|
'alignSelf',
|
|
'justifyItems',
|
|
'justifyContent',
|
|
'justifySelf',
|
|
'flex',
|
|
'flexGrow',
|
|
'flexShrink',
|
|
'order',
|
|
'float',
|
|
'clear',
|
|
'fontFamily',
|
|
'fontWeight',
|
|
'height',
|
|
'fontSize',
|
|
'lineHeight',
|
|
'listStylePosition',
|
|
'listStyleType',
|
|
'margin',
|
|
'maxHeight',
|
|
'maxWidth',
|
|
'minHeight',
|
|
'minWidth',
|
|
'objectFit',
|
|
'objectPosition',
|
|
'opacity',
|
|
'outline',
|
|
'overflow',
|
|
'overscrollBehavior',
|
|
'padding',
|
|
'placeholderColor',
|
|
'placeholderOpacity',
|
|
'pointerEvents',
|
|
'position',
|
|
'inset',
|
|
'resize',
|
|
'boxShadow',
|
|
'ringWidth',
|
|
'ringOffsetColor',
|
|
'ringOffsetWidth',
|
|
'ringColor',
|
|
'ringOpacity',
|
|
'fill',
|
|
'stroke',
|
|
'strokeWidth',
|
|
'tableLayout',
|
|
'textAlign',
|
|
'textColor',
|
|
'textOpacity',
|
|
'textOverflow',
|
|
'fontStyle',
|
|
'textTransform',
|
|
'textDecoration',
|
|
'fontSmoothing',
|
|
'fontVariantNumeric',
|
|
'letterSpacing',
|
|
'userSelect',
|
|
'verticalAlign',
|
|
'visibility',
|
|
'whitespace',
|
|
'wordBreak',
|
|
'width',
|
|
'zIndex',
|
|
'gap',
|
|
'gridAutoFlow',
|
|
'gridTemplateColumns',
|
|
'gridAutoColumns',
|
|
'gridColumn',
|
|
'gridColumnStart',
|
|
'gridColumnEnd',
|
|
'gridTemplateRows',
|
|
'gridAutoRows',
|
|
'gridRow',
|
|
'gridRowStart',
|
|
'gridRowEnd',
|
|
'transform',
|
|
'transformOrigin',
|
|
'scale',
|
|
'rotate',
|
|
'translate',
|
|
'skew',
|
|
'transitionProperty',
|
|
'transitionTimingFunction',
|
|
'transitionDuration',
|
|
'transitionDelay',
|
|
'animation',
|
|
]
|