🔥 Elimina anotaciones #[inline] para evitar abuso

This commit is contained in:
Manuel Cillero 2025-12-17 12:35:21 +01:00
parent 700bca7258
commit 11763d097d
13 changed files with 12 additions and 26 deletions

View file

@ -78,8 +78,8 @@ impl RoundedRadius {
/// assert_eq!(RoundedRadius::Circle.class_with(""), "rounded-circle");
/// assert_eq!(RoundedRadius::None.class_with("rounded-bottom-start"), "");
/// ```
#[inline]
pub(crate) fn class_with(self, prefix: &str) -> String {
#[doc(hidden)]
pub fn class_with(self, prefix: &str) -> String {
if let Some(suffix) = self.suffix() {
let base_len = if prefix.is_empty() {
Self::ROUNDED.len()