2
0
mirror of https://github.com/iconify/iconify.git synced 2025-01-25 08:08:26 +00:00

75 lines
1.8 KiB
TypeScript
Raw Normal View History

2023-01-11 17:42:21 +02:00
import plugin from 'tailwindcss/plugin';
import { getCSSRulesForIcons } from './clean';
import { getDynamicCSSRules } from './dynamic';
import type {
CleanIconifyPluginOptions,
DynamicIconifyPluginOptions,
2024-05-06 21:23:05 +03:00
IconifyPluginOptions,
} from './helpers/options';
2024-05-10 10:00:08 +03:00
import { getCSSRulesForPlugin } from './preparsed';
2023-01-11 17:42:21 +02:00
/**
2024-05-10 10:00:08 +03:00
* Generate styles for dynamic selector
*
* Usage in HTML: <span class="icon-[mdi-light--home]" />
2023-01-11 17:42:21 +02:00
*/
export function addDynamicIconSelectors(options?: DynamicIconifyPluginOptions) {
const prefix = options?.prefix || 'icon';
return plugin(({ matchComponents }) => {
matchComponents({
2024-04-28 19:12:49 +03:00
[prefix]: (icon: string) => {
try {
return getDynamicCSSRules(icon, options);
} catch (err) {
// Log error, but do not throw it
console.error(err.message);
}
},
});
});
}
/**
2024-05-10 10:00:08 +03:00
* Generate rules for mask, background and selected icon sets
*
* Icons should combine either mask or background selector and icon selector
*
* This plugin generates only square icons. Icons that are not square will be resized to fit square.
*
* Usage in HTML: <span class="iconify mdi-light--home" />
*/
2024-05-10 10:00:08 +03:00
export function addIconSelectors(options: IconifyPluginOptions) {
const rules = getCSSRulesForPlugin(options);
return plugin(({ addUtilities }) => {
addUtilities(rules);
2023-01-11 17:42:21 +02:00
});
}
2024-05-06 21:23:05 +03:00
/**
2024-05-10 10:00:08 +03:00
* Generate styles for preset list of icons
2024-05-06 21:23:05 +03:00
*
2024-05-10 10:00:08 +03:00
* Requires knowing full list of icons
*
* Usage in HTML: <span class="icon--mdi-light icon--mdi-light--home" />
*
* @deprecated Use addIconSelectors instead
2024-05-06 21:23:05 +03:00
*/
2024-05-10 10:00:08 +03:00
export function addCleanIconSelectors(
icons: string[] | string,
options?: CleanIconifyPluginOptions
) {
const rules = getCSSRulesForIcons(icons, options);
2024-05-06 21:23:05 +03:00
return plugin(({ addUtilities }) => {
addUtilities(rules);
});
}
2023-01-11 17:42:21 +02:00
/**
* Export types
2023-01-11 17:42:21 +02:00
*/
2024-05-06 21:23:05 +03:00
export type {
CleanIconifyPluginOptions,
DynamicIconifyPluginOptions,
IconifyPluginOptions,
};