({
matchUtilities,
theme,
addBase,
addUtilities,
addComponents,
matchComponents,
}: PluginAPI)
| 11 | import { addPresets } from "./presets.js"; |
| 12 | |
| 13 | const pluginCreator: PluginCreator = ({ |
| 14 | matchUtilities, |
| 15 | theme, |
| 16 | addBase, |
| 17 | addUtilities, |
| 18 | addComponents, |
| 19 | matchComponents, |
| 20 | }: PluginAPI) => { |
| 21 | addDefaults(addBase); |
| 22 | addKeyframes(addBase); |
| 23 | addPresets(addComponents, matchComponents); |
| 24 | addBaseAnimations(matchUtilities, theme); |
| 25 | addModifiers(matchUtilities, addUtilities, theme); |
| 26 | }; |
| 27 | |
| 28 | const pluginConfig: Partial<Config> = { |
| 29 | theme: { |
nothing calls this directly
no test coverage detected
searching dependent graphs…